소스 검색

Merge pull request #16694 from closedcontour/patch-1

Add sizeAttenuation to SpriteMaterial typing.
Mr.doob 6 년 전
부모
커밋
17c1f0b630
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/materials/SpriteMaterial.d.ts

+ 2 - 0
src/materials/SpriteMaterial.d.ts

@@ -6,6 +6,7 @@ export interface SpriteMaterialParameters extends MaterialParameters {
 	color?: Color | string | number;
 	map?: Texture;
 	rotation?: number;
+	sizeAttenuation?: boolean;
 }
 
 export class SpriteMaterial extends Material {
@@ -15,6 +16,7 @@ export class SpriteMaterial extends Material {
 	color: Color;
 	map: Texture | null;
 	rotation: number;
+	sizeAttenuation: boolean;
 	isSpriteMaterial: true;
 
 	setValues( parameters: SpriteMaterialParameters ): void;