La ruta fácil de usar del editor es un "inspector personalizado". En términos de la API de Unity, esto significa extender la clase Editor .
Aquí hay un ejemplo de trabajo, pero el enlace del documento anterior lo guiará a través de muchos detalles y opciones adicionales:
using UnityEngine;
using UnityEditor;
[CustomEditor(typeof(Test))]
public class TestEditor : Editor
{
private Test targetObject;
void OnEnable()
{
targetObject = (Test) this.target;
}
// Implement this function to make a custom inspector.
public override void OnInspectorGUI()
{
// Using Begin/End ChangeCheck is a good practice to avoid changing assets on disk that weren't edited.
EditorGUI.BeginChangeCheck();
// Use the editor auto-layout system to make your life easy
EditorGUILayout.BeginVertical();
targetObject.testBool = EditorGUILayout.Toggle("Bool", targetObject.testBool);
// GUI.enabled enables or disables all controls until it is called again
GUI.enabled = targetObject.testBool;
targetObject.testString = EditorGUILayout.TextField("String", targetObject.testString);
// Re-enable further controls
GUI.enabled = true;
targetObject.testInt = EditorGUILayout.IntField("Int", targetObject.testInt);
EditorGUILayout.EndVertical();
// If anything has changed, mark the object dirty so it's saved to disk
if(EditorGUI.EndChangeCheck())
EditorUtility.SetDirty(target);
}
}
Tenga en cuenta que este script usa API solo para el editor, por lo que debe colocarse en una carpeta llamada Editor. El código anterior convertirá a su inspector en lo siguiente:
Eso debería hacerlo avanzar hasta que esté más cómodo con las secuencias de comandos del Editor.
true
.