1
1
using System ;
2
2
using Unity . MLAgents . Sensors ;
3
3
using UnityEngine ;
4
+ using UnityEngine . Serialization ;
4
5
5
6
namespace Unity . MLAgents . Integrations . Match3
6
7
{
@@ -10,16 +11,30 @@ namespace Unity.MLAgents.Integrations.Match3
10
11
[ AddComponentMenu ( "ML Agents/Match 3 Sensor" , ( int ) MenuGroup . Sensors ) ]
11
12
public class Match3SensorComponent : SensorComponent , IDisposable
12
13
{
14
+ [ HideInInspector , SerializeField , FormerlySerializedAs ( "SensorName" ) ]
15
+ string m_SensorName = "Match3 Sensor" ;
16
+
13
17
/// <summary>
14
18
/// Name of the generated Match3Sensor object.
15
19
/// Note that changing this at runtime does not affect how the Agent sorts the sensors.
16
20
/// </summary>
17
- public string SensorName = "Match3 Sensor" ;
21
+ public string SensorName
22
+ {
23
+ get => m_SensorName ;
24
+ set => m_SensorName = value ;
25
+ }
26
+
27
+ [ HideInInspector , SerializeField , FormerlySerializedAs ( "ObservationType" ) ]
28
+ Match3ObservationType m_ObservationType = Match3ObservationType . Vector ;
18
29
19
30
/// <summary>
20
31
/// Type of observation to generate.
21
32
/// </summary>
22
- public Match3ObservationType ObservationType = Match3ObservationType . Vector ;
33
+ public Match3ObservationType ObservationType
34
+ {
35
+ get => m_ObservationType ;
36
+ set => m_ObservationType = value ;
37
+ }
23
38
24
39
private ISensor [ ] m_Sensors ;
25
40
@@ -30,9 +45,9 @@ public override ISensor[] CreateSensors()
30
45
Dispose ( ) ;
31
46
32
47
var board = GetComponent < AbstractBoard > ( ) ;
33
- var cellSensor = Match3Sensor . CellTypeSensor ( board , ObservationType , SensorName + " (cells)" ) ;
48
+ var cellSensor = Match3Sensor . CellTypeSensor ( board , m_ObservationType , m_SensorName + " (cells)" ) ;
34
49
// This can be null if numSpecialTypes is 0
35
- var specialSensor = Match3Sensor . SpecialTypeSensor ( board , ObservationType , SensorName + " (special)" ) ;
50
+ var specialSensor = Match3Sensor . SpecialTypeSensor ( board , m_ObservationType , m_SensorName + " (special)" ) ;
36
51
m_Sensors = specialSensor != null
37
52
? new ISensor [ ] { cellSensor , specialSensor }
38
53
: new ISensor [ ] { cellSensor } ;
0 commit comments