您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
84 行
3.1 KiB
84 行
3.1 KiB
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
namespace MLAgents
|
|
{
|
|
/// <summary>
|
|
/// CustomEditor for the LearningBrain class. Defines the default Inspector view for a
|
|
/// LearningBrain.
|
|
/// Shows the BrainParameters of the Brain and expose a tool to deep copy BrainParameters
|
|
/// between brains. Also exposes a drag box for the Model that will be used by the
|
|
/// LearningBrain.
|
|
/// </summary>
|
|
[CustomEditor(typeof(LearningBrain))]
|
|
public class LearningBrainEditor : BrainEditor
|
|
{
|
|
private const string ModelPropName = "model";
|
|
private const string InferenceDevicePropName = "inferenceDevice";
|
|
private const float TimeBetweenModelReloads = 2f;
|
|
// Time since the last reload of the model
|
|
private float _timeSinceModelReload;
|
|
// Whether or not the model needs to be reloaded
|
|
private bool _requireReload;
|
|
|
|
/// <summary>
|
|
/// Called when the user opens the Inspector for the LearningBrain
|
|
/// </summary>
|
|
public void OnEnable()
|
|
{
|
|
_requireReload = true;
|
|
EditorApplication.update += IncreaseTimeSinceLastModelReload;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when the user leaves the Inspector for the LearningBrain
|
|
/// </summary>
|
|
public void OnDisable()
|
|
{
|
|
EditorApplication.update -= IncreaseTimeSinceLastModelReload;
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
EditorGUILayout.LabelField("Learning Brain", EditorStyles.boldLabel);
|
|
var brain = (LearningBrain) target;
|
|
var serializedBrain = serializedObject;
|
|
EditorGUI.BeginChangeCheck();
|
|
base.OnInspectorGUI();
|
|
serializedBrain.Update();
|
|
var tfGraphModel = serializedBrain.FindProperty(ModelPropName);
|
|
EditorGUILayout.ObjectField(tfGraphModel);
|
|
var inferenceDevice = serializedBrain.FindProperty(InferenceDevicePropName);
|
|
EditorGUILayout.PropertyField(inferenceDevice);
|
|
serializedBrain.ApplyModifiedProperties();
|
|
if (EditorGUI.EndChangeCheck())
|
|
{
|
|
_requireReload = true;
|
|
}
|
|
if (_requireReload && _timeSinceModelReload > TimeBetweenModelReloads)
|
|
{
|
|
brain.ReloadModel();
|
|
_requireReload = false;
|
|
_timeSinceModelReload = 0;
|
|
}
|
|
// Display all failed checks
|
|
var failedChecks = brain.GetModelFailedChecks();
|
|
foreach (var check in failedChecks)
|
|
{
|
|
if (check != null)
|
|
{
|
|
EditorGUILayout.HelpBox(check, MessageType.Warning);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Increases the time since last model reload by the deltaTime since the last Update call
|
|
/// from the UnityEditor
|
|
/// </summary>
|
|
private void IncreaseTimeSinceLastModelReload()
|
|
{
|
|
_timeSinceModelReload += Time.deltaTime;
|
|
}
|
|
}
|
|
}
|