First Commit

This commit is contained in:
2026-05-24 17:10:09 -03:00
commit 0b0113fbde
222 changed files with 67094 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
extends CharacterBody3D
var SPEED:float = 200.0
@export var target= CharacterBody3D
@export var moviment_velocity: Vector3
func _physics_process(delta):
handle_input(delta)
func handle_input(delta):
pass