몬스터 젠 이펙트 위치 수정

This commit is contained in:
Ino 2025-01-24 12:15:55 +09:00
parent 893b3c8137
commit b5eef34b1e
2 changed files with 1 additions and 2 deletions

View File

@ -52,4 +52,3 @@ messageinfo 엄청 느린 버그
- 결과 화면 (승리 보상 지급)
- 기본 공격 시 주변에 몹이 있다면 몹을 바라보게
- 펫 왜 공격 안하냐
- 몬스터 젠 이펙트가 zero 위치에 나옴

View File

@ -47,7 +47,6 @@ public class MobActor : Actor
if (SceneManager.GetActiveScene().name == "StatTest") return;
#endif
Set_Warp(Get_position());
InGameInfo.Ins.Show_Effect("Effect_MonsterSpawn", Get_position());
}
public void Set(eRole role, MonsterTableData mobtable, Vector3 pos, Action<int> actDie, int order)
{
@ -83,6 +82,7 @@ public class MobActor : Actor
return;
}
#endif
InGameInfo.Ins.Show_Effect("Effect_MonsterSpawn", pos);
//GameUI.Ins.IngameUI.m_ChapterQuest.Add_PurposeCount(new ChapterQuestAddData { purpose = ePurpose.MeetMob, mobid = m_MonsterTableData.n_MonsterID });
}
public override void On_Regen()