godot-psd-training/UI/JJTC/jjlc.gd

33 lines
845 B
GDScript3
Raw Normal View History

2024-04-26 15:14:40 +08:00
extends Window
func _on_jjtc_click_jjtc_signal():
self.show()
$"../stationKeys".onShowWindow($"../stationKeys".WindowType.JJTC)
2024-04-26 15:14:40 +08:00
func _on_close_requested():
2024-04-28 11:21:59 +08:00
$"../stationKeys".hide()
2024-04-26 15:14:40 +08:00
self.hide() # Replace with function body.
2024-04-28 11:21:59 +08:00
func _on_station_keys_gui_input(event):
if event.button_mask == MouseButtonMask.MOUSE_BUTTON_MASK_LEFT:
$"../stationKeys".onShowWindow($"../stationKeys".WindowType.JJTC)
2024-04-28 11:21:59 +08:00
func shouJJTCKey():
$JJTC_Key.show()
$JJTC_Right_Rotate.show()
$JJTC_Left_Rotate.show()
func _on_jjtc_button_gui_input(event):
print('jjtc button 按下')
func _on_jjtc_button_mouse_entered():
$JJTC_Button.set_default_cursor_shape(Control.CursorShape.CURSOR_POINTING_HAND)
func _on_jjtc_button_mouse_exited():
$PanelContainer/VBoxContainer/MarginContainer/JJTC_Box.set_default_cursor_shape(Control.CursorShape.CURSOR_ARROW)