You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/3rd/StompyRobot/SRDebugger/Scripts/UI/Other/PinnedUIRoot.cs

27 lines
692 B
C#

1 month ago
namespace SRDebugger.UI.Other
{
using SRF;
using SRF.UI.Layout;
using UnityEngine;
using UnityEngine.UI;
public class PinnedUIRoot : SRMonoBehaviourEx
{
[RequiredField] public Canvas Canvas;
[RequiredField] public RectTransform Container;
[RequiredField] public DockConsoleController DockConsoleController;
[RequiredField] public GameObject Options;
[RequiredField] public FlowLayoutGroup OptionsLayoutGroup;
[RequiredField] public GameObject Profiler;
[RequiredField] public HandleManager ProfilerHandleManager;
[RequiredField] public VerticalLayoutGroup ProfilerVerticalLayoutGroup;
}
}