Reviewed-on: #53 Reviewed-by: Sehyeon <sehyeon1837@gmail.com> Reviewed-by: jay <ayjindev@gmail.com>
This commit is contained in:
commit
b63088203c
BIN
Assets/JYY/Prefabs/Alien Big Blink.prefab
(Stored with Git LFS)
BIN
Assets/JYY/Prefabs/Alien Big Blink.prefab
(Stored with Git LFS)
Binary file not shown.
@ -281,14 +281,14 @@ public class CasterDemonController : EnemyController
|
||||
transform.LookAt(aimPosition);
|
||||
|
||||
// 장판 생성과 세팅
|
||||
var fixedPos = new Vector3(aimPosition.x, aimPosition.y, aimPosition.z);
|
||||
var fixedPos = new Vector3(aimPosition.x, transform.position.y, aimPosition.z);
|
||||
var warning = Instantiate(chariotWarning, fixedPos, Quaternion.identity).GetComponent<MagicAoEField>();
|
||||
|
||||
warning.SetEffect(SlowFieldEffectData, () =>
|
||||
{
|
||||
SetAnimation(Cast);
|
||||
SFXPlayer(slowFieldSound);
|
||||
}, null);
|
||||
}, null, DebuffType.Slow.ToString());
|
||||
|
||||
// 짧은 텀 후 끝내기
|
||||
yield return Wait.For(1f);
|
||||
|
@ -119,7 +119,7 @@ public class EnemyStateFlee :IEnemyState
|
||||
|
||||
private void HandleDeadEnd()
|
||||
{
|
||||
if (_stuckCount >= 4)
|
||||
if (_stuckCount >= 2)
|
||||
{
|
||||
_enemyController.OnCannotFleeBehaviour(() => { _stuckCount = 0;});
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user