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.
27 lines
692 B
C#
27 lines
692 B
C#
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;
|
|
}
|
|
}
|