24 lines
661 B
GDScript
24 lines
661 B
GDScript
extends Node
|
|
|
|
|
|
# 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_restart_button_down():
|
|
$"../ConfirmDialog".show_confirm('此操作将重新开始实训,是否确认?')
|
|
get_tree().paused = true
|
|
|
|
|
|
func _on_restart_mouse_entered():
|
|
$PanelContainer/MarginContainer/Restart.set_default_cursor_shape(Control.CursorShape.CURSOR_POINTING_HAND)
|
|
|
|
|
|
func _on_restart_mouse_exited():
|
|
$PanelContainer/MarginContainer/Restart.set_default_cursor_shape(Control.CursorShape.CURSOR_ARROW)
|