UI HUGE UPDATE

This commit is contained in:
2026-06-25 11:48:56 +08:00
parent bd2a06f4c7
commit b2a1e307a4
1806 changed files with 359863 additions and 20822 deletions
+12 -1
View File
@@ -1,6 +1,17 @@
using UnityEngine;
using System.Collections.Generic;
public class idolSkins : MonoBehaviour
{
private AllyHero_SO currentHero;
private List<HeroSkinResolvedData> currentSkinSet = new List<HeroSkinResolvedData>();
public AllyHero_SO CurrentHero => currentHero;
public IReadOnlyList<HeroSkinResolvedData> CurrentSkinSet => currentSkinSet;
public void SetHero(AllyHero_SO hero)
{
currentHero = hero;
currentSkinSet = hero != null ? DlcContentAccess.GetAccessibleSkinSet(hero, true) : new List<HeroSkinResolvedData>();
}
}