Gerben Prins, Game Programmer

Back To Projects

Mono Crow

Mono Crow is a first-person horror game where you have to avoid a big crow while trying to collect coins.

Dodge System

21/01/2023

I made a dodging system to avoid the crow. This can be done when standing in one of the little shelter objects. The bird will hit a trigger telling it to retreat and follow its normal waypoints.

Waypoint System

12/01/2023

I made a waypoint system for the crow. This is decided by random coordinates at the side of the map that will be called in the bird class/ script. When it has chosen its coordinates it flies towards it by calculating the distance with the formula Distance = Destination - Position. Once it knows the distance, it flies towards the waypoint with its flightSpeed and chooses a new waypoint on arrival.