godot-psd-training/trainings/trainingPanel/trainingPanel.gd
joylink_fanyuhong 66c8d668b8 实训调整
2024-05-17 15:08:24 +08:00

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)