feat: Lobby ui 작업 1차

This commit is contained in:
aube.lee
2025-02-14 21:56:50 +09:00
parent 340617071a
commit c54ab55c5a
15 changed files with 1904 additions and 1058 deletions

View File

@@ -1,3 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
@@ -23,5 +24,10 @@ namespace TON
var playerColor = playerType == "b" ? "Black" : "White";
return LoadAsset<Sprite>($"UI/Player/{playerColor}_Cat", out result);
}
public bool LoadStageIcon(string stageId, out Sprite result)
{
return LoadAsset<Sprite>($"UI/Stage/stage_{stageId}", out result);
}
}
}