提交 68066f29 编写于 作者: A alteredq

Fixed trailing commas for procedural geometries in SceneExporter.

上级 ff27cf7f
......@@ -361,7 +361,7 @@ THREE.SceneExporter.prototype = {
' "type" : "sphere",',
' "radius" : ' + g.radius + ',',
' "widthSegments" : ' + g.widthSegments + ',',
' "heightSegments" : ' + g.heightSegments + ',',
' "heightSegments" : ' + g.heightSegments,
'}'
];
......@@ -377,7 +377,7 @@ THREE.SceneExporter.prototype = {
' "depth" : ' + g.depth + ',',
' "widthSegments" : ' + g.widthSegments + ',',
' "heightSegments" : ' + g.heightSegments + ',',
' "depthSegments" : ' + g.depthSegments + ',',
' "depthSegments" : ' + g.depthSegments,
'}'
];
......@@ -391,7 +391,7 @@ THREE.SceneExporter.prototype = {
' "width" : ' + g.width + ',',
' "height" : ' + g.height + ',',
' "widthSegments" : ' + g.widthSegments + ',',
' "heightSegments" : ' + g.heightSegments + ',',
' "heightSegments" : ' + g.heightSegments,
'}'
];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册