We are about to switch to a new forum software. Until then we have removed the registration on this forum.
So I'm trying to nearly perfectly recreate Pac-man in processing. My problem is the original assets are very small, the map is 224 * 288 for example. However, a lot of the game mechanics depend on the size being that. That size allows the map to be divisible by 8 which allows a perfect grid of all dots and playable spaces. A lot of the speeds are also dependent on the pixels staying the same. Is there a way just to scale the window without using resize? Thanks for any help!
Answers
https://Processing.org/reference/PImage_resize_.html
Thanks for the input, but that's what I'm trying to avoid using.
You've said you were trying to avoid scale(): /:)
https://Processing.org/reference/scale_.html
Be aware that we can pre-resize() everything within setup(); before draw() loop starts. *-:)
Oh sorry, I meant resize().