Archived
forked from RDTKEditor/RDTKEditor
添加对 Core 的直接引用
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using RhythmBase.Components;
|
||||
using RhythmBase.Components.Easing;
|
||||
using RhythmBase.Events;
|
||||
namespace RhythmBase.Adofai.Events
|
||||
{
|
||||
public class ADFreeRoam : ADBaseTileEvent, IEaseEvent
|
||||
{
|
||||
public ADFreeRoam()
|
||||
{
|
||||
Type = ADEventType.FreeRoam;
|
||||
}
|
||||
public override ADEventType Type { get; }
|
||||
public float Duration { get; set; }
|
||||
public int Size { get; set; }
|
||||
public int PositionOffset { get; set; }
|
||||
public int OutTime { get; set; }
|
||||
[JsonProperty("OutEase")]
|
||||
public EaseType Ease { get; set; }
|
||||
public string HitsoundOnBeats { get; set; }
|
||||
public string HitsoundOffBeats { get; set; }
|
||||
public int CountdownTicks { get; set; }
|
||||
public int AngleCorrectionDir { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user