diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-12-30 15:15:01 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-12-30 15:15:01 +0100 |
commit | e08a29e73ea4f7e6d78e8e7f5a6e7033dbc1f542 (patch) | |
tree | 966b95a7cdad16f7658d2e10cec6e549f3b98c17 /ui/login/character_selection_status.gd | |
parent | 6e2deea3d1b2fb4d79dac02a0d4310936c7f317c (diff) |
next commit
Diffstat (limited to 'ui/login/character_selection_status.gd')
-rw-r--r-- | ui/login/character_selection_status.gd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/login/character_selection_status.gd b/ui/login/character_selection_status.gd index 2c0e450..5bbd200 100644 --- a/ui/login/character_selection_status.gd +++ b/ui/login/character_selection_status.gd @@ -17,3 +17,21 @@ func set_info(info: CharacterInformation): %Luk.text = str(info.luck) %Map.text = info.map_name.substr(0, info.map_name.length() - 4) + + +func clear(): + %Name.text = "" + %Job.text = "" + %Level.text = "" + %Exp.text = "" + %Hp.text = "" + %Sp.text = "" + + %Str.text = "" + %Agi.text = "" + %Vit.text = "" + %Int.text = "" + %Dex.text = "" + %Luk.text = "" + + %Map.text = "" |