Basic Collision Detection in Games

Collision Detection in Video Games

Physics and Collision Detection are a very significant and complicated aspect of game development. A lot of math and complex equations eventually are needed. Fortunately, many games can use basic shapes to avoid complicated math.

Using Source Control during Game Development

source control with game development

Git is a free and open source distributed version control system. It’s an extremely valuable tool for game development. It allows you to keep track of your changes, collaborate with others, and even recover better from massive failures.

How to read Hexadecimal

how to read hexadecimal

Hexadecimal is a base 16 numeral system. This means that 16 alphanumeric characters are used in representing numbers. These characters are 0-9 and A-F. Each digit in a hexadecimal number represents 4 bits. These 4-bits can make 16 possible numbers. Specifically, any integer between 0 and 15.

How to read binary code

how to read binary code

Binary code is the language of electronics. Essentially everything you see on your phone, game console, and computer boils down to binary. The word binary itself usually means that something can have one of two values.