mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 00:48:00 +01:00
20 lines
344 B
C#
20 lines
344 B
C#
|
using Fie.Object;
|
||
|
|
||
|
namespace Fie.Ponies.RisingSun
|
||
|
{
|
||
|
[FiePrefabInfo("Prefabs/RisingSun/Power/RisingSunSpellEffect")]
|
||
|
public class FieEmitObjectRisingSunSpellEffect : FieEmittableObjectBase
|
||
|
{
|
||
|
private const float duration = 2f;
|
||
|
|
||
|
public override void awakeEmitObject()
|
||
|
{
|
||
|
destoryEmitObject(2f);
|
||
|
}
|
||
|
|
||
|
private void Update()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|