添加对 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,45 @@
using System;
using System.Runtime.CompilerServices;
using Newtonsoft.Json;
using RhythmBase.Components;
namespace RhythmBase.Adofai.Events
{
public class ADPositionTrack : ADBaseTileEvent
{
public ADPositionTrack()
{
Type = ADEventType.PositionTrack;
}
public override ADEventType Type { get; }
public RDPoint PositionOffset { get; set; }
public object RelativeTo
{
[CompilerGenerated]
get
{
return RelativeTo;
}
[CompilerGenerated]
set
{
RelativeTo = RuntimeHelpers.GetObjectValue(value);
}
}
public float Rotation { get; set; }
public float Scale { get; set; }
public float Opacity { get; set; }
public bool JustThisTile { get; set; }
public bool SditorOnly { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public bool? StickToFloors { get; set; }
}
}