Example #1
0
        private static void SetBeaconData(AtsBeaconData beaconData)
        {
            AtsDebug.LogInfo(string.Format("Called: {0}()", nameof(SetBeaconData)));


            AtsSimulationEnvironment.Instance.OnBeaconDataRecieved(beaconData);
        }
Example #2
0
 internal void OnBeaconDataRecieved(AtsBeaconData beaconData)
 {
     foreach (IAtsBehaviour behaviour in Behaviours)
     {
         behaviour.OnBeaconDataRecieved(beaconData);
     }
 }
Example #3
0
        private static void SetBeaconData(AtsBeaconData beaconData)
        {
            AtsDebug.LogInfo($"Called: {nameof(SetBeaconData)}()");


            AtsSimulationEnvironment.Instance.OnBeaconDataReceived(beaconData);
        }
Example #4
0
 internal void OnBeaconDataReceived(AtsBeaconData beaconData)
 {
     foreach (var behaviour in BehaviourArray)
     {
         behaviour.OnBeaconDataReceived(beaconData);
     }
 }
Example #5
0
 public void OnBeaconDataReceived(AtsBeaconData beaconData)
 {
 }