/// <summary>
 /// Sets the exposure mode.  Capture must be started for this to work!
 /// </summary>
 public void setExposureMode(ARExposureMode mode)
 {
     _peekSetExposureMode((int)mode);
 }
Esempio n. 2
0
 // Sets the exposure mode.  Capture must be started for this to work!
 public static void setExposureMode( ARExposureMode mode )
 {
     if( Application.platform == RuntimePlatform.IPhonePlayer )
         _arSetExposureMode( (int)mode );
 }