adds game over credits (#74)
## Changes - Adds game over credits Reviewed-on: gymkhana/gymkhana#74 Reviewed-by: Eneko Nieto <eneko@eneko.ovh> Co-authored-by: oier <oierbravo@gmail.com> Co-committed-by: oier <oierbravo@gmail.com>
This commit is contained in:
27
gymkhana/rooms/turno_cocina/creditos/SceneHandler.gd
Normal file
27
gymkhana/rooms/turno_cocina/creditos/SceneHandler.gd
Normal file
@@ -0,0 +1,27 @@
|
||||
extends Node2D
|
||||
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
|
||||
|
||||
func _on_scrollingText_finished():
|
||||
escoria.globals_manager.set_global("turno_cocina_creditos_return_to_menu_visible", true)
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
func _on_Button_button_up():
|
||||
escoria.game_scene.show_main_menu()
|
||||
pass # Replace with function body.
|
||||
Reference in New Issue
Block a user