v1.1.1 Updates
Pac-Man » Devlog
So I was reviewing my previous devLog and noticed something terribly wrong...
Inside the GameMenu class' Start() function, I had added the following:
private void Start() { playerOnePelletsConsumed = 0; playerOnePelletsConsumed = 0; BlinkChevronOff(); }
I'm sure you can already see the problem. It's a bit embarrassing that I did not. Obviously, we don't only want to reset player one's consumed pellet count. We need to reset them both. So, in this update there is but one, very minor change:
private void Start() { playerOnePelletsConsumed = 0; playerTwoPelletsConsumed = 0; BlinkChevronOff(); }
I suppose that's not technically the only change. I also added a custom icon to the start file. It's Pac-Man.
Cheers,
-T
Files
PacMan v1.1.1.zip 26 MB
Apr 23, 2022
Get Pac-Man
Pac-Man
Wakka Wakka
Status | In development |
Author | Spalding Tech |
Genre | Action |
Tags | 2D, Arcade, Fast-Paced |
More posts
- PacMan v1.1 UpdatesApr 13, 2022
- PacMan Launches!Apr 12, 2022
Leave a comment
Log in with itch.io to leave a comment.