흠.. 글쿤요 혹시 등급 하나만 더 추가해서 1,2는 Bad, 3은 없음, ,5,6,7,8,9 부터 순서대로 나오게 바꿀 수 있을까요?

This commit is contained in:
Ino 2025-11-07 14:22:59 +09:00
parent 6e250eb7fa
commit 0ee606d9c7
1 changed files with 8 additions and 1 deletions

View File

@ -269,7 +269,14 @@ public class GachaUI : uScrollViewMgr
yield return new WaitForSeconds(0.5f); yield return new WaitForSeconds(0.5f);
DSUtil.InActivateGameObjects(gos_grade, gradedata.n_GachaGrade - 1); switch (gradedata.n_GachaGrade)
{
case 1: case 2: gos_grade[0].SetActive(true); break;
case 3: break;
default:
DSUtil.InActivateGameObjects(gos_grade, gradedata.n_GachaGrade - 2);
break;
}
isGacha = false; isGacha = false;
} }