From b90bbb2a093ec83e2863a0a880f20b5ec6a4a9e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo?= Date: Thu, 22 Jun 2017 16:40:51 -0300 Subject: [PATCH] Update three-core.d.ts Changing normalScale type to Vector2 instead of number on MeshStandardMaterial --- types/three/three-core.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index a160641d99..02cbe672e8 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -2626,7 +2626,7 @@ export interface MeshStandardMaterialParameters extends MaterialParameters { bumpMap?: Texture; bumpScale?: number; normalMap?: Texture; - normalScale?: number; + normalScale?: Vector2; displacementMap?: Texture; displacementScale?: number; displacementBias?: number;