mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
16 lines
346 B
C#
16 lines
346 B
C#
|
using Fie.Object;
|
||
|
|
||
|
namespace Fie.Enemies.HoovesRaces
|
||
|
{
|
||
|
[FiePrefabInfo("Prefabs/Enemies/ChangelingForces/Common/ChangelingForcesDeadEffect")]
|
||
|
public class FieEmitObjectChangelingForcesDeadEffect : FieEmittableObjectBase
|
||
|
{
|
||
|
private const float DURATION = 2.5f;
|
||
|
|
||
|
public override void awakeEmitObject()
|
||
|
{
|
||
|
destoryEmitObject(2.5f);
|
||
|
}
|
||
|
}
|
||
|
}
|