您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
700 B
27 行
700 B
#if UNITY_2020_1_OR_NEWER
|
|
using UnityEngine;
|
|
using Unity.MLAgents.Sensors;
|
|
|
|
namespace Unity.MLAgents.Extensions.Sensors
|
|
{
|
|
public class ArticulationBodySensorComponent : SensorComponent
|
|
{
|
|
public ArticulationBody RootBody;
|
|
|
|
[SerializeField]
|
|
public PhysicsSensorSettings Settings = PhysicsSensorSettings.Default();
|
|
public string sensorName;
|
|
|
|
/// <summary>
|
|
/// Creates a PhysicsBodySensor.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override ISensor[] CreateSensors()
|
|
{
|
|
return new ISensor[] {new PhysicsBodySensor(RootBody, Settings, sensorName)};
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
#endif // UNITY_2020_1_OR_NEWER
|