Play game
Magic Magnifier's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Enjoyment | #5116 | 2.182 | 3.333 |
Creativity | #5298 | 2.400 | 3.667 |
Overall | #5728 | 2.146 | 3.278 |
Style | #6278 | 1.855 | 2.833 |
Ranked from 6 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
How does your game fit the theme?
Players can use a magnifier to change the scale of the world.
Development Time
96 hours
(Optional) Please credit all assets you've used
The music comes from https://tallbeard.itch.io/music-loop-bundle
All the other assets are made by myself.
Leave a comment
Log in with itch.io to leave a comment.
Comments
really fun
You made this on your own in 12 hours? It's insane! We also tried to implement our version of a mgnifying glass in Unity and struggled so much.
May I ask you, how did you implement it? It looks so smooth!
I made the magnifier in two steps.
The first step is to determine the collider box. I only used squares for the obstacles and the magnifier so it is relatively easy to determine which part of the colliders should be removed or magnified.
The second step is to display things correctly. I used a camera to render everything to be magnified onto a render texture and display it as a raw image over the screen. Then I scaled it and repositioned it according to the magnifier's magnifying scale and position. Then I used a mask to display only things inside the magnifier.
Thank you for the exhaustive explanation: we opted to duplicate some game objects and resize the copies. One major limitation we encountered is that not everything on the screen can be magnified.
Once again, great job!