Esempio n. 1
0
 public override EyewearCalibrationProfileManager GetCalibrationProfileManager()
 {
     if (this.mProfileManager == null)
     {
         lock (this)
         {
             if (this.mProfileManager == null)
             {
                 this.mProfileManager = new EyewearCalibrationProfileManagerImpl();
             }
         }
     }
     return(this.mProfileManager);
 }
Esempio n. 2
0
 public override EyewearCalibrationProfileManager GetCalibrationProfileManager()
 {
     if (this.mProfileManager == null)
     {
         lock (this)
         {
             if (this.mProfileManager == null)
             {
                 this.mProfileManager = new PlayModeEyewearCalibrationProfileManagerImpl();
             }
         }
     }
     Debug.LogWarning("Usage of the EyewearrCalibrationProfileManager class is not supported in Play Mode");
     return(this.mProfileManager);
 }