LobbyUI 구조 수정

This commit is contained in:
aube.lee
2025-02-14 11:19:02 +09:00
parent d8af30673a
commit 3cf6b5a11b
13 changed files with 1380 additions and 7 deletions

View File

@@ -17,5 +17,11 @@ namespace TON
{
return LoadAsset<Sprite>($"UI/Skill Icon/skill_icon_{skillId}", out result);
}
public bool LoadPlayerIcon(string playerType, out Sprite result)
{
var playerColor = playerType == "b" ? "Black" : "White";
return LoadAsset<Sprite>($"UI/Player/{playerColor}_Cat", out result);
}
}
}