Conveyor sideloading

This commit is contained in:
Rendo 2025-10-14 23:54:09 +05:00
commit 81451bd356
14 changed files with 243 additions and 17 deletions

View file

@ -16,7 +16,10 @@ func _input(event: InputEvent) -> void:
else:
if held_construction.try_place(zone):
held_construction = null
if event.is_action_pressed("plc_rotate_up"):
if held_construction != null:
held_construction.cycle_up_facing()
if event.is_action_pressed("plc_cancel"):
held_construction.queue_free()