pacman/solution/SOLUTION.md

12 lines
263 B
Markdown
Raw Normal View History

2020-11-30 16:59:18 +00:00
# Pac-Man Soulutions
## Make Pac-Man go slower
Increase the number you divide the delta with in [PacMan.cpp](../lib/PacMan.cpp)
~~~
float_t position_delta = (time_delta.count() / 128.0);
~~~
Example
~~~
float_t position_delta = (time_delta.count() / 256.0);
~~~