Browse Source

TS: Fix type of .normalScale for MeshStandardMaterial.

Mugen87 6 years ago
parent
commit
bf7afd5086
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/materials/MeshStandardMaterial.d.ts

+ 1 - 1
src/materials/MeshStandardMaterial.d.ts

@@ -56,7 +56,7 @@ export class MeshStandardMaterial extends Material {
   bumpScale: number;
   normalMap: Texture | null;
   normalMapType: NormalMapTypes;
-  normalScale: number;
+  normalScale: Vector2;
   displacementMap: Texture | null;
   displacementScale: number;
   displacementBias: number;