소스 검색

added subMesh.setBoundingInfo

Adam Bowman 8 년 전
부모
커밋
4f93dd6012
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Mesh/babylon.subMesh.ts

+ 4 - 0
src/Mesh/babylon.subMesh.ts

@@ -42,6 +42,10 @@
             return this._boundingInfo;
         }
 
+        public setBoundingInfo(boundingInfo: BoundingInfo): void {
+            this._boundingInfo = boundingInfo;
+        }
+
         public getMesh(): AbstractMesh {
             return this._mesh;
         }