public override EyewearCalibrationProfileManager GetCalibrationProfileManager() { if (this.mProfileManager == null) { lock (this) { if (this.mProfileManager == null) { this.mProfileManager = new EyewearCalibrationProfileManagerImpl(); } } } return(this.mProfileManager); }
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); }