mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
21 lines
496 B
C#
21 lines
496 B
C#
using Fie.Object;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Ponies.Applejack
|
|
{
|
|
[FiePrefabInfo("Prefabs/Applejack/Power/ApplejackKickEffect")]
|
|
public class FieEmitObjectApplejackKickEffect : FieEmittableObjectBase
|
|
{
|
|
private const float DURATION = 0.6f;
|
|
|
|
public override void awakeEmitObject()
|
|
{
|
|
if (initTransform != null)
|
|
{
|
|
base.transform.position = initTransform.position;
|
|
}
|
|
base.transform.rotation = Quaternion.LookRotation(directionalVec);
|
|
destoryEmitObject(0.6f);
|
|
}
|
|
}
|
|
}
|