添加对 Core 的直接引用

This commit is contained in:
OLDREDSTONE
2025-03-25 15:49:57 +08:00
parent 24907abedb
commit 06c19bf10a
296 changed files with 24961 additions and 2 deletions
@@ -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; }
}
}