Skip to content

Commit dd4fd79

Browse files
authored
Add component menues for some sensors and actuators. (#5001) (#5002)
1 parent 60d5d93 commit dd4fd79

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

com.unity.ml-agents.extensions/Runtime/Input/InputActuatorComponent.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ namespace Unity.MLAgents.Extensions.Input
2020
/// <see cref="InputActionActuator"/>s.
2121
/// </summary>
2222
[RequireComponent(typeof(PlayerInput), typeof(IInputActionAssetProvider))]
23+
[AddComponentMenu("ML Agents/Input Actuator", (int)MenuGroup.Actuators)]
2324
public class InputActuatorComponent : ActuatorComponent
2425
{
2526
InputActionAsset m_InputAsset;
@@ -234,7 +235,7 @@ internal static InputControlScheme CreateControlScheme(InputControl device,
234235
}
235236

236237
var inputControlScheme = new InputControlScheme(
237-
mlAgentsControlSchemeName,
238+
mlAgentsControlSchemeName,
238239
deviceRequirements);
239240

240241
return inputControlScheme;
@@ -261,14 +262,13 @@ internal static void RegisterLayoutBuilder(InputActionMap defaultMap, string lay
261262
var builder = new InputControlLayout.Builder()
262263
.WithName(layoutName)
263264
.WithFormat(mlAgentsLayoutFormat);
264-
for(var i = 0; i < defaultMap.actions.Count; i++)
265+
for (var i = 0; i < defaultMap.actions.Count; i++)
265266
{
266267
var action = defaultMap.actions[i];
267268
builder.AddControl(action.name)
268269
.WithLayout(action.expectedControlType);
269270
}
270271
return builder.Build();
271-
272272
}, layoutName);
273273
}
274274
}

com.unity.ml-agents.extensions/Runtime/Match3/Match3ActuatorComponent.cs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ namespace Unity.MLAgents.Extensions.Match3
77
/// <summary>
88
/// Actuator component for a Match3 game. Generates a Match3Actuator at runtime.
99
/// </summary>
10+
[AddComponentMenu("ML Agents/Match 3 Actuator", (int)MenuGroup.Actuators)]
1011
public class Match3ActuatorComponent : ActuatorComponent
1112
{
1213
/// <summary>

com.unity.ml-agents.extensions/Runtime/Match3/Match3SensorComponent.cs

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
using Unity.MLAgents.Sensors;
2+
using UnityEngine;
23

34
namespace Unity.MLAgents.Extensions.Match3
45
{
56
/// <summary>
67
/// Sensor component for a Match3 game.
78
/// </summary>
9+
[AddComponentMenu("ML Agents/Match 3 Sensor", (int)MenuGroup.Sensors)]
810
public class Match3SensorComponent : SensorComponent
911
{
1012
/// <summary>

com.unity.ml-agents.extensions/Runtime/Sensors/GridSensor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace Unity.MLAgents.Extensions.Sensors
99
/// <summary>
1010
/// Grid-based sensor.
1111
/// </summary>
12+
[AddComponentMenu("ML Agents/Grid Sensor", (int)MenuGroup.Sensors)]
1213
public class GridSensor : SensorComponent, ISensor, IBuiltInSensor
1314
{
1415
/// <summary>
@@ -480,7 +481,6 @@ public BuiltInSensorType GetBuiltInSensorType()
480481
return BuiltInSensorType.GridSensor;
481482
}
482483

483-
484484
/// <summary>
485485
/// GetCompressedObservation - Calls Perceive then puts the data stored on the perception buffer
486486
/// onto the m_perceptionTexture2D to be converted to a byte array and returned

com.unity.ml-agents/Runtime/Constants.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace Unity.MLAgents
66
internal enum MenuGroup
77
{
88
Default = 0,
9-
Sensors = 50
9+
Sensors = 50,
10+
Actuators = 100
1011
}
1112
}

0 commit comments

Comments
 (0)