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