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

Editor: Implemented #scene=. See #5843.

上级 4e00832f
......@@ -239,15 +239,19 @@
//
var file = null;
var hash = window.location.hash;
if ( hash.substr( 1, 4 ) === 'app=' ) {
if ( hash.substr( 1, 4 ) === 'app=' ) file = hash.substr( 5 );
if ( hash.substr( 1, 6 ) === 'scene=' ) file = hash.substr( 7 );
if ( file !== null ) {
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 ) {
loader.load( file, function ( text ) {
var json = JSON.parse( text );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册