ppo-SnowballTarget / com.unity.ml-agents /Editor /Input /InputActuatorComponentEditor.cs
ashish2244's picture
Initial commit (part 4)
a4473a4 verified
Raw
History Blame Contribute Delete
903 Bytes
#if MLA_INPUT_SYSTEM
using Unity.MLAgents.Input;
using UnityEditor;
namespace Unity.MLAgents.Editor.Input
{
[CustomEditor(typeof(InputActuatorComponent))]
[UnityEngine.Scripting.APIUpdating.MovedFrom("Unity.MLAgents.Extensions.Editor.Input")]
internal class InputActuatorComponentEditor : UnityEditor.Editor
{
const string k_ActionSpecName = "m_ActionSpec";
public override void OnInspectorGUI()
{
var so = serializedObject;
so.Update();
InputActuatorComponent o = so.targetObject as InputActuatorComponent;
_ = o.ActionSpec;
EditorGUI.indentLevel++;
EditorGUI.BeginDisabledGroup(true);
EditorGUILayout.PropertyField(so.FindProperty(k_ActionSpecName));
EditorGUI.EndDisabledGroup();
EditorGUI.indentLevel--;
}
}
}
#endif // MLA_INPUT_SYSTEM