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.
22 lines
550 B
C#
22 lines
550 B
C#
namespace SRDebugger.UI.Other
|
|
{
|
|
using Controls;
|
|
using SRF;
|
|
using SRF.UI;
|
|
using UnityEngine;
|
|
using UnityEngine.Serialization;
|
|
|
|
public class TriggerRoot : SRMonoBehaviourEx
|
|
{
|
|
[RequiredField] public Canvas Canvas;
|
|
|
|
[RequiredField] public LongPressButton TapHoldButton;
|
|
|
|
[RequiredField] public RectTransform TriggerTransform;
|
|
|
|
[RequiredField] public ErrorNotifier ErrorNotifier;
|
|
|
|
[RequiredField] [FormerlySerializedAs("TriggerButton")] public MultiTapButton TripleTapButton;
|
|
}
|
|
}
|