add more ui proto features

This commit is contained in:
Persephone Bubblegum-Holidy 2025-05-23 09:06:49 -07:00
parent 8ab3c1413a
commit b31a9563f6
24 changed files with 548 additions and 16 deletions

View file

@ -9,6 +9,7 @@ func _ready() -> void:
movement_out.connect(animatronic._movement_out)
movement_in.connect(self._movement_in)
movement_out.connect(self._movement_out)
get_tree().get_root().size_changed.connect(_on_size_changed)
func _input(event: InputEvent) -> void:
if event.is_action_pressed("toggle_editor_screen"):
@ -27,6 +28,9 @@ func _movement_in(movement, rate):
func _movement_out(movement, rate):
get_node("Movements/IndicatorLights/" + movement).turn_off();
func _on_size_changed() -> void:
$SubViewport.size = $ColorRect.size
func _on_mouth_button_down() -> void:
movement_in.emit("Mouth", $FlowControls/InFlows/MouthFlow.value)