added phase 1 of gameplay and ui buttons

This commit is contained in:
Nikolai Fesenko
2025-08-29 14:31:49 +02:00
parent 98dfdfd77e
commit fbd75b3397
25 changed files with 1044 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
extends HBoxContainer
var start_pos: Vector2
func _ready() -> void:
start_pos = self.position
func _input(event: InputEvent) -> void:
if event.is_action_released("left_mouse_click"):
self.position = Vector2(1000.0,1000.0)
func on_state_changed():
pass