feat: 랭킹 정보 업데이트 및 화면 매핑 로직 추가

This commit is contained in:
aube.lee
2025-02-28 01:15:25 +09:00
parent 7e89fb0959
commit a0238ddc61
7 changed files with 37 additions and 7 deletions

View File

@@ -34,9 +34,9 @@ namespace TON
return LoadAsset<Sprite>($"Player/Character Face/{playerColor}_{status}", out result);
}
public bool LoadStageIcon(string stageId, out Sprite result)
public bool LoadMonsterWaveIcon(int wave, out Sprite result)
{
return LoadAsset<Sprite>($"UI/Stage/stage_{stageId}", out result);
return LoadAsset<Sprite>($"UI/Monster Portrait/wave{wave}_monster", out result);
}
}
}