1
0

Late Night Merge

This commit is contained in:
FoxSpellCaster
2025-01-12 03:35:48 -05:00
parent 5af4c7111e
commit e1150105e7
10 changed files with 122 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
extends RigidBody3D
@export var move_speed : float = 2.0
func _physics_process(_delta: float) -> void:
if Input.is_key_pressed(KEY_LEFT):
linear_velocity.x = -move_speed
if Input.is_key_pressed(KEY_RIGHT):
linear_velocity.x = move_speed

View File

@@ -0,0 +1 @@
uid://bebu3iw1v8h5t