소스 검색

Merge pull request #283 from daner/clearcolor-fix

Adjusted  property 'clearColor' on class 'scene' to type 'any'.
deltakosh 11 년 전
부모
커밋
d43717bc4c
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;