mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 14:17:59 +01:00
49 lines
910 B
C#
49 lines
910 B
C#
using Fie.Object;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Enemies.HoovesRaces.QueenChrysalis
|
|
{
|
|
[FiePrefabInfo("Prefabs/Enemies/ChangelingForces/QueenChrysalis/Power/QueenChrysalisHitEffectBurned")]
|
|
public class FieEmitObjectQueenChrysalisHitEffectBurned : FieEmittableObjectBase
|
|
{
|
|
[SerializeField]
|
|
private PKFxFX _burningFx;
|
|
|
|
private const float DURATION = 1f;
|
|
|
|
private float _lifeCount;
|
|
|
|
private bool _isEnd;
|
|
|
|
public override void awakeEmitObject()
|
|
{
|
|
if (_burningFx != null)
|
|
{
|
|
_burningFx.StopEffect();
|
|
_burningFx.StartEffect();
|
|
}
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (!_isEnd)
|
|
{
|
|
_lifeCount += Time.deltaTime;
|
|
if (_lifeCount > 1f)
|
|
{
|
|
if (_burningFx != null)
|
|
{
|
|
_burningFx.StopEffect();
|
|
}
|
|
destoryEmitObject(1f);
|
|
_isEnd = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void LateUpdate()
|
|
{
|
|
base.transform.position = initTransform.position;
|
|
}
|
|
}
|
|
}
|