98 lines
3.3 KiB
C#
98 lines
3.3 KiB
C#
namespace SRF.Internal
|
|
{
|
|
internal static class ComponentMenuPaths
|
|
{
|
|
public const string PathRoot = "SRF";
|
|
|
|
public const string SRServiceManager = "SRF/Service/Service Manager";
|
|
|
|
public const string BehavioursRoot = "SRF/Behaviours";
|
|
|
|
public const string DestroyOnDisable = "SRF/Behaviours/Destroy On Disable";
|
|
|
|
public const string DontDestroyOnLoad = "SRF/Behaviours/Don't Destroy On Load";
|
|
|
|
public const string MatchTransform = "SRF/Behaviours/Match Transform";
|
|
|
|
public const string LookAt = "SRF/Behaviours/LookAt";
|
|
|
|
public const string MatchForwardDirection = "SRF/Behaviours/Match Forward Direction";
|
|
|
|
public const string MatchMainCameraForwardDirection = "SRF/Behaviours/Match Forward Direction (Main Camera)";
|
|
|
|
public const string RuntimePosition = "SRF/Behaviours/Runtime Position";
|
|
|
|
public const string ScrollTexture = "SRF/Behaviours/Scroll Texture";
|
|
|
|
public const string SmoothFloatBehaviour = "SRF/Behaviours/Smooth Float";
|
|
|
|
public const string SmoothFollow2D = "SRF/Behaviours/Smooth Follow (2D)";
|
|
|
|
public const string SpringFollow = "SRF/Behaviours/Spring Follow";
|
|
|
|
public const string SmoothMatchTransform = "SRF/Behaviours/Match Transform (Smooth)";
|
|
|
|
public const string SpawnPrefab = "SRF/Behaviours/Spawn Prefab";
|
|
|
|
public const string Velocity = "SRF/Behaviours/Velocity";
|
|
|
|
public const string SmoothOscillate = "SRF/Behaviours/Smooth Oscillate";
|
|
|
|
public const string SRDebugCamera = "SRF/Behaviours/Camera/SRDebugCamera";
|
|
|
|
public const string ComponentsRoot = "SRF/Components";
|
|
|
|
public const string SRLineRenderer = "SRF/Components/SRLineRenderer";
|
|
|
|
public const string SelectionRoot = "SRF/Components/Selection Root";
|
|
|
|
public const string SRSpriteFadeRenderer = "SRF/Components/Fade Renderer (Sprite)";
|
|
|
|
public const string SRMaterialFadeRenderer = "SRF/Components/Fade Renderer (Material)";
|
|
|
|
public const string SRCompositeFadeRenderer = "SRF/Components/Fade Renderer (Composite)";
|
|
|
|
public const string UIRoot = "SRF/UI";
|
|
|
|
public const string TiltOnTouch = "SRF/UI/Tilt On Touch";
|
|
|
|
public const string ScaleOnTouch = "SRF/UI/Scale On Touch";
|
|
|
|
public const string InheritColour = "SRF/UI/Inherit Colour";
|
|
|
|
public const string FlashGraphic = "SRF/UI/Flash Graphic";
|
|
|
|
public const string CopyPreferredSize = "SRF/UI/Copy Preferred Size";
|
|
|
|
public const string CopyLayoutElement = "SRF/UI/Copy Layout Element";
|
|
|
|
public const string SRText = "SRF/UI/SRText";
|
|
|
|
public const string Unselectable = "SRF/UI/Unselectable";
|
|
|
|
public const string LongPressButton = "SRF/UI/Long Press Button";
|
|
|
|
public const string FlowLayoutGroup = "SRF/UI/Layout/Flow Layout Group";
|
|
|
|
public const string VirtualVerticalLayoutGroup = "SRF/UI/Layout/VerticalLayoutGroup (Virtualizing)";
|
|
|
|
public const string StyleRoot = "SRF/UI/Style Root";
|
|
|
|
public const string StyleComponent = "SRF/UI/Style Component";
|
|
|
|
public const string ResponsiveEnable = "SRF/UI/Responsive (Enable)";
|
|
|
|
public const string ResponsiveResize = "SRF/UI/Responsive (Resize)";
|
|
|
|
public const string RetinaScaler = "SRF/UI/Retina Scaler";
|
|
|
|
public const string NumberButton = "SRF/UI/SRNumberButton";
|
|
|
|
public const string NumberSpinner = "SRF/UI/SRNumberSpinner";
|
|
|
|
public const string SRSpinner = "SRF/UI/Spinner";
|
|
|
|
public const string ContentFitText = "SRF/UI/Content Fit Text";
|
|
}
|
|
}
|