瀏覽代碼

Fixed JSON.stringify( object ).

See #8428.
tschw 9 年之前
父節點
當前提交
8a4d4773f2
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/core/Object3D.js

+ 3 - 1
src/core/Object3D.js

@@ -546,7 +546,9 @@ THREE.Object3D.prototype = {
 
 	toJSON: function ( meta ) {
 
-		var isRootObject = ( meta === undefined );
+		var isRootObject = ( meta === undefined || meta === '' );
+		// when meta is an empty string, this method has been called from
+		// within JSON.stringify
 
 		var output = {};