Archived
forked from RDTKEditor/RDTKEditor
添加对 Core 的直接引用
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using RhythmBase.Components;
|
||||
using RhythmBase.Components.Easing;
|
||||
using RhythmBase.Events;
|
||||
namespace RhythmBase.Adofai.Events
|
||||
{
|
||||
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
||||
public class ADSetDefaultText : ADBaseTaggedTileAction, IEaseEvent
|
||||
{
|
||||
public ADSetDefaultText()
|
||||
{
|
||||
Type = ADEventType.SetDefaultText;
|
||||
}
|
||||
|
||||
public override ADEventType Type { get; }
|
||||
|
||||
public float Duration { get; set; }
|
||||
|
||||
public EaseType Ease { get; set; }
|
||||
|
||||
public RDColor? DefaultTextColor { get; set; }
|
||||
|
||||
public RDColor? DefaultTextShadowColor { get; set; }
|
||||
|
||||
public RDPoint? LevelTitlePosition { get; set; }
|
||||
|
||||
public string LevelTitleText { get; set; }
|
||||
|
||||
public string CongratsText { get; set; }
|
||||
|
||||
public string PerfectText { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user