File size: 596 Bytes
05c9ac2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Unity.MLAgents.Sensors.Reflection
{
    /// <summary>
    /// Sensor that wraps an integer field or property of an object, and returns
    /// that as an observation.
    /// </summary>
    internal class IntReflectionSensor : ReflectionSensorBase
    {
        public IntReflectionSensor(ReflectionSensorInfo reflectionSensorInfo)
            : base(reflectionSensorInfo, 1)
        { }

        internal override void WriteReflectedField(ObservationWriter writer)
        {
            var intVal = (System.Int32)GetReflectedValue();
            writer[0] = intVal;
        }
    }
}