添加对 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
+71
View File
@@ -0,0 +1,71 @@
using Newtonsoft.Json;
using RhythmBase.Components;
using RhythmBase.Components.Easing;
namespace RhythmBase.Events
{
/// <summary>
/// Represents an event to move a room with easing properties.
/// </summary>
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
public class MoveRoom : BaseEvent, IEaseEvent
{
/// <summary>
/// Initializes a new instance of the <see cref="MoveRoom"/> class.
/// </summary>
public MoveRoom()
{
Type = EventType.MoveRoom;
Tab = Tabs.Rooms;
}
/// <summary>
/// Gets or sets the position of the room.
/// </summary>
[EaseProperty]
public RDPointE? RoomPosition { get; set; }
/// <summary>
/// Gets or sets the scale of the room.
/// </summary>
[EaseProperty]
public RDSizeE? Scale { get; set; }
/// <summary>
/// Gets or sets the angle of the room.
/// </summary>
[EaseProperty]
public RDExpression? Angle { get; set; }
/// <summary>
/// Gets or sets the pivot point of the room.
/// </summary>
[EaseProperty]
public RDPointE? Pivot { get; set; }
/// <summary>
/// Gets or sets the duration of the move event.
/// </summary>
public float Duration { get; set; }
/// <summary>
/// Gets or sets the easing type of the move event.
/// </summary>
public EaseType Ease { get; set; }
/// <summary>
/// Gets the type of the event.
/// </summary>
public override EventType Type { get; }
/// <summary>
/// Gets the tab associated with the event.
/// </summary>
public override Tabs Tab { get; }
/// <summary>
/// Gets the room associated with the event.
/// </summary>
[JsonIgnore]
public RDRoom Rooms => new RDSingleRoom(checked((byte)Y));
}
}