2014-09-29 129 views
0

在kinect 1.7封裝包中,當在場景之間切換時,出現錯誤「只能有一個kinectsensor實例。」任何人都可以提出解決方案嗎?統一加載另一個場景

+0

檢查你的遊戲對象及其組件。我不熟悉這個包,但它聽起來像兩個對象具有相同的組件,它只能*一次被激活*或*只存在於一個地方*。這聽起來與相機對象上的聽衆相似。確保場景中只有一個存在。 – 2014-09-29 13:57:44

回答

0

改劇本從這個

if (KinectSensor.instance != null) 
    { 
     Debug.Log("There should be only one active instance of the KinectSensor component at at time."); 
     throw new Exception("There should be only one active instance of the KinectSensor component at a time."); 
    } 

if (KinectSensor.instance != null) 
{ 
    Debug.Log("There should be only one active instance of the KinectSensor component at at time."); 
KinectSensor.instance = null; // Add this one 
} 

如果沒有工作,可能是你的DELET你的第一現場的攝像頭,而轉移到第二個場景。

相關問題