Browse Source

added subMesh.setBoundingInfo

Adam Bowman 8 years ago
parent
commit
4f93dd6012
1 changed files with 4 additions and 0 deletions
  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;
         }