credits and control screen, other visual changes

This commit is contained in:
Persephone Bubblegum-Holiday 2025-05-23 13:38:44 -07:00
parent 15f193dadd
commit 1ee0206110
3 changed files with 178 additions and 1 deletions

View file

@ -31,6 +31,18 @@ func _movement_out(movement, _rate):
func _on_size_changed() -> void:
$SubViewport.size = $ColorRect.size
func _on_controls_button_pressed() -> void:
$ControlsScreen.visible = true
func _on_credits_button_pressed() -> void:
$CreditsScreen.visible = true
func _on_controls_input_eater_pressed() -> void:
$ControlsScreen.visible = false
func _on_credits_input_eater_pressed() -> void:
$CreditsScreen.visible = false
func _on_mouth_button_down() -> void:
movement_in.emit("Mouth", $FlowControls/InFlows/MouthFlow.value)