mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
17 lines
364 B
C#
17 lines
364 B
C#
|
using Fie.Object;
|
||
|
|
||
|
namespace Fie.Ponies.Applejack
|
||
|
{
|
||
|
[FiePrefabInfo("Prefabs/Applejack/Power/ApplejackHitEffectMiddle")]
|
||
|
public class FieEmitObjectApplejackHitEffectMiddle : FieEmittableObjectBase
|
||
|
{
|
||
|
private const float DURATION = 1f;
|
||
|
|
||
|
public override void awakeEmitObject()
|
||
|
{
|
||
|
base.transform.position = directionalVec;
|
||
|
destoryEmitObject(1f);
|
||
|
}
|
||
|
}
|
||
|
}
|