Hide editor-only properties from animating in UI Control

This commit is contained in:
Wojtek Figat
2023-05-28 23:30:49 +02:00
parent 6a482c987c
commit fb6a9728a3

View File

@@ -105,7 +105,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Helper for Editor UI (see UIControlControlEditor).
/// </summary>
[NoSerialize, HideInEditor]
[NoSerialize, HideInEditor, NoAnimate]
internal float Proxy_Offset_Left
{
get => _offsets.Left;
@@ -115,7 +115,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Helper for Editor UI (see UIControlControlEditor).
/// </summary>
[NoSerialize, HideInEditor]
[NoSerialize, HideInEditor, NoAnimate]
internal float Proxy_Offset_Right
{
get => _offsets.Right;
@@ -125,7 +125,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Helper for Editor UI (see UIControlControlEditor).
/// </summary>
[NoSerialize, HideInEditor]
[NoSerialize, HideInEditor, NoAnimate]
internal float Proxy_Offset_Top
{
get => _offsets.Top;
@@ -135,7 +135,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Helper for Editor UI (see UIControlControlEditor).
/// </summary>
[NoSerialize, HideInEditor]
[NoSerialize, HideInEditor, NoAnimate]
internal float Proxy_Offset_Bottom
{
get => _offsets.Bottom;