Examples/mvp-walk-with-collision @bel

This commit is contained in:
breel
2025-08-17 21:41:41 -06:00
parent 9d2db4edda
commit d99cd1cd69
28 changed files with 691 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
extends PhysicsBody3D
var mover = new("res://Entities/Characters/Movers/pedal.gd")
func _physics_process(delta: float):
duo = self.mover.to_move_rotate(delta)
velocity = duo[0]
move_and_slide()