initial commit

This commit is contained in:
2025-09-28 23:51:56 -05:00
committed by Gregory Marco
commit 8756ff44ad
24 changed files with 616 additions and 0 deletions

11
actors/player.gd Normal file
View File

@@ -0,0 +1,11 @@
extends CharacterBody2D
@export var speed = 100
func get_input():
var input_direction = Input.get_vector("left", "right", "up", "down")
velocity = input_direction * speed
func _physics_process(delta):
get_input()
move_and_slide()