mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-31 09:49:06 +03:00
* Update Platformer 2D to Godot v4.3 Before this change, if you tries to import the Platformer 2D project using Godot v4.3 (the latest stable version of Godot, at the moment), you would get the following warning: > Warning: This project was last edited in Godot 4.2. > Opening will change it to Godot 4.3. > > Open anyway? Project will be modified. This change updates the project to Godot 4.3 so that that warning no longer appears. When you upgrade to a newer version of Godot, sometimes certain files will automatically be updated by the Godot Editor after the upgrade has been completed. Specifically, the files won’t get updated until after they’re opened in the Godot Editor. When creating this commit, I tried to open every single file for Platformer 2D in the Godot Editor to make sure that all of those automatic changes are included in this commit. * Replace Platformer2D’s TileMap with a TileMapLayer Before this change, the Platformer 2D used a TileMap Node. TileMaps are deprecated. TileMapLayers should be used instead [1]. [1]: <https://docs.godotengine.org/en/4.3/classes/class_tilemap.html#tilemap>
2D Demos
These demos are all 2D, but otherwise do not have a common theme.
Languages: Most have GDScript, some have Godot shader language
Renderers: Glow for 2D and Physics Platformer use Forward+, 2D Particles uses Mobile, and the rest use Compatibility