From e76fa57bc07c57af2f8bc305b17a4a8c482a8553 Mon Sep 17 00:00:00 2001 From: Corban Brook Date: Mon, 28 Jan 2019 15:50:45 -0500 Subject: [PATCH] Added missing userData to BufferGeometry (#32533) --- types/three/three-core.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index 639fba5ba5..4866cbfd54 100755 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -867,6 +867,7 @@ export class BufferGeometry extends EventDispatcher { boundingBox: Box3; boundingSphere: Sphere; drawRange: { start: number, count: number }; + userData: {[key: string]: any}; getIndex(): BufferAttribute; setIndex( index: BufferAttribute|number[] ): void;