windows resize

This commit is contained in:
Persephone Bubblegum-Holidy 2025-05-23 10:01:18 -07:00
parent b31a9563f6
commit 15f193dadd
2 changed files with 95 additions and 47 deletions

View file

@ -22,10 +22,10 @@ func _on_movements_flyout_button_toggled(toggled_on: bool) -> void:
func _on_flows_flyout_button_toggled(toggled_on: bool) -> void:
$FlowControls.visible = toggled_on
func _movement_in(movement, rate):
func _movement_in(movement, _rate):
get_node("Movements/IndicatorLights/" + movement).turn_on();
func _movement_out(movement, rate):
func _movement_out(movement, _rate):
get_node("Movements/IndicatorLights/" + movement).turn_off();
func _on_size_changed() -> void: