Log 1 - Player Movement & Enemy Spawning
- Oliver Smith
- Jun 7, 2022
- 2 min read
Today i started working on the player movement and the enemy spawning overall the progression was good as both work but still need some working on to make it feel more cohesive.
Player Movement -
For the player movement script I wanted to keep it simple as the player will be moving around a flat arena and so will not need to have any jump/crouch mechanics I decided to use rigidbody velocity for my movement but I am still unsure if I want to keep this and might end up changing this at a latter date, one key part of the script was that the upgrades that would come latter must be able to change the players speed with ease to do this I created a float that would act as a speed this would be accessible via the upgrade script and so when the player picks that upgrade the players movement speed will change.

Enemy spawning -
The way that i chose to do enemy spawning was to have the enemies spawn randomly within a collider in order to have some sort of randomness to the spawning so that the player could not work out exactly where they would come from.
As well as that i made it so every time the enemies spawn the amount that spawn next time increases this is so as the player gets stronger so does the game.

Things to work on -
Fix a bug where if you hold moving left or right as well as forward your speed goes above the set speed.
Clear the scripts up and comment it for future referencing.
Add a list of enemy objects with different stats instead of just 1.
Comments