@@ -4,7 +4,7 @@
THREE.BufferGeometry = function () {
- this.id = THREE.Math.uuid();
+ this.id = THREE.Math.generateUUID();
// attributes
@@ -9,7 +9,7 @@
THREE.Geometry = function () {
this.name = '';
this.uuid = '';
@@ -7,7 +7,7 @@
THREE.Object3D = function () {
@@ -5,7 +5,7 @@
THREE.Material = function () {
@@ -1,10 +1,11 @@
/**
* @author alteredq / http://alteredqualia.com/
+ * @author mrdoob / http://mrdoob.com/
*/
THREE.Math = {
- uuid: function () {
+ generateUUID: function () {
// http://www.broofa.com/Tools/Math.uuid.htm
@@ -6,7 +6,7 @@
THREE.Texture = function ( image, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {