코스튬 완료

This commit is contained in:
Ino 2025-01-01 15:20:25 +09:00
parent c9e479e5bb
commit 58866cb339
3 changed files with 22 additions and 11 deletions

View File

@ -39,9 +39,8 @@ classconfig 에 의해 정해짐
인게임 - 터레인 제외, 메시 베이커로 통째로 묶기 or 퍼펙트 컬링
//로비 - 퍼펙트 컬링
로비 애니메이션 대충 구현
전직 후 애니메이션 변경
어드레서블 다운로드 % 정상적으로 나오게 수정
코스튬
- 컬렉션 스탯 적용

View File

@ -19,6 +19,7 @@ public class PCInfoUI_PCListCard : CardBase
images[0].sprite = m_Data.Get_IconSprite();
texts[0].text = Get_Status(sdata.Get_EqiupmentEquip(eItem.PCCostume));
gos[0].SetActive(false);
gos[1].SetActive(!sdata.IsObtainItem(Get_IntData()));
}
string Get_Status(int equipid)

View File

@ -347,7 +347,7 @@ public class ActorStatInfo
Set_PCAwaken(); // 캐릭터 각성 값 적용
Set_PCLimit(); // 캐릭터 초월(한계돌파) 값 적용
Set_Relic(); // 컬렉션 - 유물 값 적용
Set_Collection(); // 컬렉션 - 장비, 몬스터 도감 값 적용
Set_Collection(); // 컬렉션 - 장비, 몬스터 도감, 코스튬 값 적용
Set_Fruit(); // 열매 값 적용
Set_Farmer(); // 농부 값 적용(전투x)
@ -899,6 +899,7 @@ public class ActorStatInfo
}
}
void Set_Collection()
{
{
var lst = table_collectionlist.Ins.Get_DataList();
for (int i = 0; i < lst.Count; i++)
@ -913,6 +914,16 @@ public class ActorStatInfo
}
}
}
{
var lst = table_pccostumecollectionlist.Ins.Get_DataList();
for (int i = 0; i < lst.Count; i++)
{
if (lst[i].IsCollection(m_sdata))
Set_Stat(true, lst[i].e_Stat, lst[i].n_StatValue);
}
}
}
void Set_Fruit()
{
var lst = table_fruit.Ins.Get_DataList();