This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Adofai/Events/ADScalePlanets.cs
T

32 lines
558 B
C#

using RhythmBase.Components.Easing;
using RhythmBase.Events;
namespace RhythmBase.Adofai.Events
{
public class ADScalePlanets : ADBaseTaggedTileAction, IEaseEvent
{
public ADScalePlanets()
{
Type = ADEventType.ScalePlanets;
}
public override ADEventType Type { get; }
public float Duration { get; set; }
public TargetPlanets TargetPlanet { get; set; }
[EaseProperty]
public int Scale { get; set; }
public EaseType Ease { get; set; }
public enum TargetPlanets
{
FirePlanet,
IcePlanet,
GreenPlanet,
All
}
}
}