胡佳骏 1 yıl önce
ebeveyn
işleme
933f38dbd7
1 değiştirilmiş dosya ile 4 ekleme ve 2 silme
  1. 4 2
      Samples~/SDK/XRRGBCamera.cs

+ 4 - 2
Samples~/SDK/XRRGBCamera.cs

@@ -151,7 +151,9 @@ public class XRRGBCamera : SingletonMono<XRRGBCamera>
 
     public void stopCamera()
     {
-
-        RGBCamTexture.Stop();
+        if (RGBCamTexture != null && RGBCamTexture.isPlaying)
+        {
+            RGBCamTexture.Stop();
+        }
     }
 }