Browse Source

Merge pull request #20341 from ycw/patch-5

TS: Removed outdated `*IdCount` from d.ts
Mr.doob 4 years ago
parent
commit
119c775788
4 changed files with 0 additions and 10 deletions
  1. 0 2
      src/core/Geometry.d.ts
  2. 0 2
      src/core/Object3D.d.ts
  3. 0 3
      src/materials/Material.d.ts
  4. 0 3
      src/textures/Texture.d.ts

+ 0 - 2
src/core/Geometry.d.ts

@@ -32,8 +32,6 @@ export interface MorphNormals {
 	normals: Vector3[];
 	normals: Vector3[];
 }
 }
 
 
-export let GeometryIdCount: number;
-
 /**
 /**
  * Base class for geometries
  * Base class for geometries
  *
  *

+ 0 - 2
src/core/Object3D.d.ts

@@ -15,8 +15,6 @@ import { EventDispatcher } from './EventDispatcher';
 import { BufferGeometry } from './BufferGeometry';
 import { BufferGeometry } from './BufferGeometry';
 import { Intersection } from './Raycaster';
 import { Intersection } from './Raycaster';
 
 
-export let Object3DIdCount: number;
-
 /**
 /**
  * Base class for scene graph objects
  * Base class for scene graph objects
  */
  */

+ 0 - 3
src/materials/Material.d.ts

@@ -13,9 +13,6 @@ import {
 	StencilOp
 	StencilOp
 } from '../constants';
 } from '../constants';
 
 
-// Materials //////////////////////////////////////////////////////////////////////////////////
-export let MaterialIdCount: number;
-
 export interface MaterialParameters {
 export interface MaterialParameters {
 	alphaTest?: number;
 	alphaTest?: number;
 	blendDst?: BlendingDstFactor;
 	blendDst?: BlendingDstFactor;

+ 0 - 3
src/textures/Texture.d.ts

@@ -11,9 +11,6 @@ import {
 	TextureEncoding
 	TextureEncoding
 } from '../constants';
 } from '../constants';
 
 
-// Textures /////////////////////////////////////////////////////////////////////
-export let TextureIdCount: number;
-
 export class Texture extends EventDispatcher {
 export class Texture extends EventDispatcher {
 
 
 	/**
 	/**