27 lines
754 B
C#
27 lines
754 B
C#
|
|
namespace Mapbox.Editor
|
|||
|
|
{
|
|||
|
|
using UnityEditor;
|
|||
|
|
using UnityEngine;
|
|||
|
|
using Mapbox.Unity.Map;
|
|||
|
|
|
|||
|
|
[CustomPropertyDrawer(typeof(LayerPerformanceOptions))]
|
|||
|
|
public class LayerPerformanceOptionsDrawer : PropertyDrawer
|
|||
|
|
{
|
|||
|
|
SerializedProperty isActiveProperty;
|
|||
|
|
|
|||
|
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
|||
|
|
{
|
|||
|
|
isActiveProperty = property.FindPropertyRelative("isEnabled");
|
|||
|
|
|
|||
|
|
isActiveProperty.boolValue = EditorGUILayout.Toggle(new GUIContent("Enable Coroutines"), isActiveProperty.boolValue);
|
|||
|
|
|
|||
|
|
if (isActiveProperty.boolValue == true)
|
|||
|
|
{
|
|||
|
|
EditorGUI.indentLevel++;
|
|||
|
|
EditorGUILayout.PropertyField(property.FindPropertyRelative("entityPerCoroutine"), true);
|
|||
|
|
EditorGUI.indentLevel--;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|