Browse Source

Remove unused code

Popov72 5 years ago
parent
commit
e5f467ca76
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/Meshes/instancedMesh.ts

+ 0 - 10
src/Meshes/instancedMesh.ts

@@ -500,16 +500,6 @@ declare module "./abstractMesh" {
     }
 }
 
-/*Object.defineProperty(Mesh.prototype, "edgesShareWithInstances", {
-    get: function(this: Mesh) {
-        return this.edgesShareWithInstances;
-    },
-    set: function(this: Mesh, value: boolean) {
-        this.edgesShareWithInstances = value;
-    },
-    enumerable: true,
-    configurable: true
-});*/
 Mesh.prototype.edgesShareWithInstances = false;
 
 Mesh.prototype.registerInstancedBuffer = function(kind: string, stride: number): void {