Posted April 01, 2024 by Marlon49
#sped #update #devlog
First: This is not an April fools joke.
In this Devlog I want to show the Features that are in 1.1 and will be in 1.1!
New Level Mechanics in the 1.1 Update will include:
The moving Platforms don't move the Player with the platforms. I should tho, I don't know why so uh yeah.
After you beat the normal 15 Levels from 1.0, you will be able to play the new 5 Levels with the new objects. Two of them are already done.
If you played the Game and used full screen, what you probably did, you have noticed the black borders on the side.
So I have changed all of that and i now works.
########### CAM ZOOMING ########### cam_zoom_x = get_viewport_rect().size.x/1024 - 1 #this is a little sketchy.. cam_zoom_y = get_viewport_rect().size.y/600 - 1 if cam_zoom_x >= 1.0: cam_zoom_x = 0.99 if cam_zoom_y >= 1.0: cam_zoom_y = 0.99 if cam_zoom_x >= cam_zoom_y: cam_zoom = cam_zoom_x / 2 else: cam_zoom = cam_zoom_y / 2 $Camera2D.zoom.x = 1 - cam_zoom $Camera2D.zoom.y = 1 - cam_zoom
The textures also have higher resolution now.
I hope you like the new features and if you have any ideas let me know.
You can download the game in Version 1.0.2_01 down there. fun
(Notice to my friend: The Playtest demo is done when i made the levels)