We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8519a9d commit dc71940Copy full SHA for dc71940
1 file changed
editor/js/ui/Sidebar.Properties.Geometry.js
@@ -123,10 +123,11 @@ Sidebar.Properties.Geometry = function ( signals ) {
123
124
var output = new THREE.GeometryExporter().parse( selected );
125
126
- /*
127
var blob = new Blob( [ output ], { type: 'text/json' } );
128
var objectURL = URL.createObjectURL( blob );
129
- */
+
+ window.open( objectURL, '_blank' );
130
+ window.focus();
131
132
}
133
0 commit comments