Ver código fonte

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

Daniel Eriksson 11 anos atrás
pai
commit
70e7000016
1 arquivos alterados com 1 adições e 1 exclusões
  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;