SamsonGame/Assets/Sources/Feel/MMTools/Tools/MMGUI/SelectionBase.cs

18 lines
415 B
C#
Raw Normal View History

2021-12-29 20:50:11 +03:00
using UnityEngine;
using System.Collections;
using System;
namespace MoreMountains.Tools
{
[SelectionBase]
/// <summary>
/// Add this component to an object and it'll always get selection in scene view, even if you select one of its children
/// </summary>
[AddComponentMenu("More Mountains/Tools/GUI/SelectionBase")]
public class SelectionBase : MonoBehaviour
{
}
}