Files
Sprout-Farm/LoginPanel.gd
2024-12-03 21:35:56 +08:00

20 lines
318 B
GDScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
extends Panel
#用户登录账号用QQ号代替
@onready var username_input = $username_input
#用户登录密码
@onready var password_input = $password_input
#登录按钮
@onready var login_button = $login_button
func _ready():
pass
func _process(delta):
pass
func _on_login_button_pressed():
pass