You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
mapbox-sdk/Unity/Editor/PropertyDrawers/LayerPerformanceOptionsDraw...

26 lines
754 B

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--;
}
}
}
}