feat: 게임 인트로 화면 추가

This commit is contained in:
aube.lee
2025-03-09 18:47:20 +09:00
parent 5a4f69249e
commit 0e06fb63a5
20 changed files with 1760 additions and 1149 deletions

View File

@@ -68,5 +68,18 @@ namespace TON
{
return LoadAsset<Sprite>($"UI/Ranking Paw/my_rank_box", out result);
}
public bool LoadIntroBackgroundImage(int index, out Sprite result)
{
return LoadAsset<Sprite>($"UI/Story Background/intro_background_{index}", out result);
}
public bool LoadIntroVillagerImage(out Sprite result)
{
return LoadAsset<Sprite>($"UI/Story Background/villagers", out result);
}
}
}