the lighting in the game was pleasing to look at, i like the colors :) the platforming was good as well, but i got stuck at the second section of the first level where the camera would scroll up really fast, barely giving me any time to react. and by the way, youre allowed to update the game submission as long as it's a game-breaking bug, which it is in your case. Other than that, the amount I played was very nice. Good job!
Viewing post in Stolen items jam comments
I stumbled upon the same bug, and I don't think it has to do with the version of the engine that you are using. I think it has to do with the way you calculate the speed of the camera moving up. As it is now, you are making the camera move a certain amount each frame, and the issue arises when you send the game to a different person and their system supports the game in a higher frame rate. So, if they play with double the fps, the camera will move twice as much in the same amount of time. To fix this, you will need to multiply the speed of your camera by your delta time. Delta time is the time that has elapsed since the last frame. This way, you will have consistent results regardless of the software.