+EA 23.77 Nightly - Plugin.UI
January 16, 2025
2 files modified.
Important Changes
None.
SkinDeco
@@ -132,6 +132,18 @@ public bool reverse
cs
}
}
public bool bottom
{
get
{
return bits[2];
}
set
{
bits[2] = value;
}
}
[OnSerializing]
internal void OnSerializing(StreamingContext context)
{
SkinDecoActor
@@ -19,5 +19,9 @@ public void Refresh()
cs
base.transform.localScale = new Vector3((!owner.reverse) ? 1 : (-1), 1f, 1f);
shadow.enabled = owner.shadow;
shadow.effectDistance = new Vector2(owner.reverse ? (-3) : 3, -3f);
if (owner.bottom)
{
base.transform.SetSiblingIndex(1);
}
}
}