提交 18429934 编写于 作者: M Mr.doob

Editor: Loading external states.

上级 97d27271
......@@ -237,6 +237,27 @@
onWindowResize();
//
var hash = window.location.hash;
if ( hash.substr( 1, 4 ) === 'app=' ) {
if ( confirm( 'Any unsaved data will be lost. Are you sure?' ) ) {
var loader = new THREE.XHRLoader();
loader.crossOrigin = '';
loader.load( hash.substr( 5 ), function ( text ) {
var json = JSON.parse( text );
editor.fromJSON( json );
} );
}
}
</script>
</body>
</html>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册