sebastien 7 năm trước cách đây
mục cha
commit
4fbd8c9221
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/Mesh/babylon.abstractMesh.ts

+ 2 - 2
src/Mesh/babylon.abstractMesh.ts

@@ -1,6 +1,6 @@
 module BABYLON {
     /** @hidden */
-    class FacetData {
+    class _FacetDataStorage {
         // facetData private properties
         public facetPositions: Vector3[];             // facet local positions
         public facetNormals: Vector3[];               // facet local normals
@@ -76,7 +76,7 @@
             return TransformNode.BILLBOARDMODE_ALL;
         }
 
-        private _facetData = new FacetData();
+        private _facetData = new _FacetDataStorage();
 
         /** Gets ot sets the culling strategy to use to find visible meshes */
         public cullingStrategy = AbstractMesh.CULLINGSTRATEGY_STANDARD;