From 305c13a3c3c33952f1c10fdb4f2de7210fbcbd6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sarron?= Date: Thu, 14 May 2020 23:52:29 +0200 Subject: [PATCH] fix: Texture.d.ts : added matrix and matrixAutoUpdate --- src/textures/Texture.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/textures/Texture.d.ts b/src/textures/Texture.d.ts index 2140b3cb4d..3f088f8802 100644 --- a/src/textures/Texture.d.ts +++ b/src/textures/Texture.d.ts @@ -1,4 +1,5 @@ import { Vector2 } from './../math/Vector2'; +import { Matrix3 } from './../math/Matrix3'; import { EventDispatcher } from './../core/EventDispatcher'; import { Mapping, @@ -43,6 +44,8 @@ export class Texture extends EventDispatcher { format: PixelFormat; internalFormat: PixelFormatGPU | null; type: TextureDataType; + matrix: Matrix3; + matrixAutoUpdate: boolean; offset: Vector2; repeat: Vector2; center: Vector2; -- GitLab