瀏覽代碼

Adjusted property 'clearColor' on class 'scene' to type 'any'.

Daniel Eriksson 11 年之前
父節點
當前提交
70e7000016
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Babylon/babylon.scene.ts

+ 1 - 1
Babylon/babylon.scene.ts

@@ -15,7 +15,7 @@
 
         // Members
         public autoClear = true;
-        public clearColor = new BABYLON.Color3(0.2, 0.2, 0.3);
+        public clearColor: any = new BABYLON.Color3(0.2, 0.2, 0.3);
         public ambientColor = new BABYLON.Color3(0, 0, 0);
         public beforeRender: () => void;
         public afterRender: () => void;