Open in app

Sign In

Write

Sign In

Matthew Clark
Matthew Clark

118 Followers

Home

About

Published in

Nerd For Tech

·Sep 3

Binary Numbers

A binary number is a number that is represented in a base-2 system. These binary numbers use only two symbols to represent data, those being 0 and 1. This system uses 0 as a way to represent no value and the symbol 1 as the representation of value. …

Computer Science

5 min read

Binary Numbers
Binary Numbers
Computer Science

5 min read


Published in

Nerd For Tech

·Jul 18

2D Player Shooting Mechanics in Unity

In my last article, I created an enemy that will chase the player. Now it is time to allow the player to defend themselves by giving them a weapon. Table of Contents Projectile Prefab Object Pooling Shooting Mechanics Projectile Behavior Rotate Player Projectile Prefab The first thing we are going to do is create a…

Made With Unity

8 min read

2D Player Shooting Mechanics in Unity
2D Player Shooting Mechanics in Unity
Made With Unity

8 min read


Published in

Nerd For Tech

·Jul 16

Creating an Enemy That Chases the Player in Unity

I have implemented player movement in the project I am working on using Unity’s new input system. Now it is time to create an enemy for the player to interact with. Right-click in the hierarchy and go down to 2D Object -> Sprites -> Circle.

Made With Unity

3 min read

Creating an Enemy That Chases the Player in Unity
Creating an Enemy That Chases the Player in Unity
Made With Unity

3 min read


Published in

Nerd For Tech

·Jul 11

Creating Basic Player Movement with Unity’s New Input System

I have started working on a new project and decided it was time to dive into the new input system Unity has. In this post, I will show how to install the input system in a unity project and set up a basic player movement. To get started, navigate to…

Made With Unity

4 min read

Creating Basic Player Movement with Unity’s New Input System
Creating Basic Player Movement with Unity’s New Input System
Made With Unity

4 min read


Published in

Nerd For Tech

·May 28

Floyd’s Cycle Finding Algorithm

Floyd’s cycle-finding algorithm is famous for detecting if a linked list contains a cycle. This algorithm is also referred to as the Hare-Tortoise algorithm because of the use of a slow and fast pointer. How it Works The algorithm starts with two pointers set to the head of a linked…

Computer Science

4 min read

Floyd’s Cycle Finding Algorithm
Floyd’s Cycle Finding Algorithm
Computer Science

4 min read


Aug 2, 2022

Update: Multiplayer Prototype

I have been learning to create multiplayer games. I have been using the Unity engine to create the game and Mirror to handle multiplayer aspects.

Learning To Code

1 min read

Update: Multiplayer Prototype
Update: Multiplayer Prototype
Learning To Code

1 min read


Jul 25, 2022

Creating a Multiplayer Prototype in Unity

I have been working on learning how to implement multiplayer for unity projects using Mirror. To use Mirror, you can click the link above and add it to your unity assets. Now go into your unity project and import Mirror using the package manager.

Made With Unity

2 min read

Creating a Multiplayer Prototype in Unity
Creating a Multiplayer Prototype in Unity
Made With Unity

2 min read


Published in

Nerd For Tech

·Jul 21, 2022

Input and Output in C++

To input and output information to the console in C++, you will use the standard input-output stream (iostream) library. Output To output information, you will use the code std::cout. This code is referencing the standard output stream. In most cases, the output device is the display screen. Here is an example with the classic Hello World! program.

Learn To Code

1 min read

Input and Output in C++
Input and Output in C++
Learn To Code

1 min read


Published in

Nerd For Tech

·Jul 17, 2022

Tree Traversal

There are many ways to traverse a binary tree. The two most common ways to traverse a binary tree are depth-first search and breadth-first search. Depth-First Search Depth-first search works by starting at the root node and traversing as far as possible along the branches of the tree. Once the…

Learn To Code

4 min read

Tree Traversal
Tree Traversal
Learn To Code

4 min read


Published in

Nerd For Tech

·Jul 16, 2022

Binary Heaps

A binary heap is a type of binary tree that has its own set of rules. There are two types of binary heaps which are the max-heap and the min-heap. Rules The first rule the binary max-heap follows is that each node’s value must be greater than the value of…

Learn To Code

4 min read

Binary Heaps
Binary Heaps
Learn To Code

4 min read

Matthew Clark

Matthew Clark

118 Followers

Game Developer and Programmer

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams