Skip to content

Commit 7883357

Browse files
committed
Fixed GUI.
1 parent bdf2502 commit 7883357

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gui/js/Code.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ var Code = function () {
138138

139139
_list.length = 0;
140140

141-
for ( var i = 0, l = scene.objects.length; i < l; i ++ ) {
141+
for ( var i = 0, l = scene.children.length; i < l; i ++ ) {
142142

143-
var object = scene.objects[ i ];
143+
var object = scene.children[ i ];
144144

145145
if ( object.geometry == undefined || object.geometry.gui == undefined ) {
146146

@@ -168,7 +168,7 @@ var Code = function () {
168168
if ( object.scale.y != 1 ) string += '\n\tmesh.scale.y = ' + object.scale.y + ';';
169169
if ( object.scale.z != 1 ) string += '\n\tmesh.scale.z = ' + object.scale.z + ';';
170170

171-
string += '\n\tscene.addObject( mesh );'; // string += '\n\tscene.add( mesh );';
171+
string += '\n\tscene.add( mesh );';
172172

173173
_list.push( string );
174174

gui/js/UI.Viewport.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ UI.Viewport = function () {
7070
_projector.unprojectVector( vector, _camera );
7171

7272
var ray = new THREE.Ray( _camera.position, vector.subSelf( _camera.position ).normalize() );
73-
var intersects = ray.intersectScene( _scene );
73+
var intersects = ray.intersectObjects( _scene.children );
7474

7575
if ( intersects.length ) {
7676

@@ -92,7 +92,7 @@ UI.Viewport = function () {
9292
_projector.unprojectVector( vector, _camera );
9393

9494
var ray = new THREE.Ray( _camera.position, vector.subSelf( _camera.position ).normalize() );
95-
var intersects = ray.intersectScene( _scene );
95+
var intersects = ray.intersectObjects( _scene.children );
9696

9797
if ( _SELECTED ) {
9898

0 commit comments

Comments
 (0)