胡佳骏 1 سال پیش
والد
کامیت
933f38dbd7
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  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();
+        }
     }
 }