Ver código fonte

Editor: Moved script editor on top of player.

Mr.doob 10 anos atrás
pai
commit
1a294d5f6e
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      editor/index.html

+ 3 - 3
editor/index.html

@@ -109,12 +109,12 @@
 			var viewport = new Viewport( editor );
 			document.body.appendChild( viewport.dom );
 
-			var script = new Script( editor );
-			document.body.appendChild( script.dom );
-
 			var player = new Player( editor );
 			document.body.appendChild( player.dom );
 
+			var script = new Script( editor );
+			document.body.appendChild( script.dom );
+
 			var toolbar = new Toolbar( editor );
 			document.body.appendChild( toolbar.dom );