Hugo Locurcio 2a962929f3 Update demo files for Godot 4.2.1 (#1013) | před 9 měsíci | |
---|---|---|
.. | ||
models | před 9 měsíci | |
player | před 1 rokem | |
screenshots | před 1 rokem | |
README.md | před 1 rokem | |
cubelib.tres | před 1 rokem | |
default_env.tres | před 1 rokem | |
icon.webp | před 1 rokem | |
icon.webp.import | před 1 rokem | |
level.tscn | před 1 rokem | |
project.godot | před 9 měsíci |
Kinematic character demo for 3D using a cube for the character. This is similar to the 3D platformer demo.
Language: GDScript
Renderer: GLES 3
Check out this demo on the asset library: https://godotengine.org/asset-library/asset/126
This demo uses a KinematicBody
for the player, and StaticBody
for the level. Each has colliders, the player moves itself via
move_and_slide()
in _physics_process()
, and collides with the level.