basic channel setup

This commit is contained in:
Tabby 2025-05-11 16:41:21 +10:00
parent 704152c21c
commit bf835edaeb
5 changed files with 121 additions and 0 deletions

6
move_test.gd Normal file
View file

@ -0,0 +1,6 @@
extends Node2D
func _process(delta: float) -> void:
var direction := Input.get_axis("ui_left", "ui_right")
if direction:
position.x += direction * 10