Update three.d.ts

Added missing .userData property to Object3D
This commit is contained in:
rmoudy
2014-02-21 08:22:18 -06:00
parent 53df735adb
commit 301188b6bf

6
threejs/three.d.ts vendored
View File

@@ -1856,6 +1856,12 @@ declare module THREE {
static defaultEulerOrder: string;
// static defaultEulerOrder:EulerOrder;
/**
* An object that can be used to store custom data about the Object3d.
* It should not hold references to functions as these will not be cloned.
*/
userData: any;
}
var Object3DIdCount: number;