Firstborn/Assets/AwesomeTechnologies/TouchReactSystemPro/Editor/TouchReactMeshEditor.cs

15 lines
364 B
C#
Raw Normal View History

using UnityEditor;
namespace AwesomeTechnologies.TouchReact
{
[CustomEditor(typeof(TouchReactMesh))]
public class TouchReactMeshEditor : TouchReactBaseEditor
{
public override void OnInspectorGUI()
{
HelpTopic = "home/vegetation-studio/components/touch-bend-system";
base.OnInspectorGUI();
}
}
}