using UnityEngine;
namespace MLAgents.Editor
{
public static class EditorUtilities
{
///
/// Whether or not properties that affect the model can be updated at the current time.
///
///
public static bool CanUpdateModelProperties()
{
return !Application.isPlaying;
}
}
}