File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -138,9 +138,9 @@ var Code = function () {
138
138
139
139
_list . length = 0 ;
140
140
141
- for ( var i = 0 , l = scene . objects . length ; i < l ; i ++ ) {
141
+ for ( var i = 0 , l = scene . children . length ; i < l ; i ++ ) {
142
142
143
- var object = scene . objects [ i ] ;
143
+ var object = scene . children [ i ] ;
144
144
145
145
if ( object . geometry == undefined || object . geometry . gui == undefined ) {
146
146
@@ -168,7 +168,7 @@ var Code = function () {
168
168
if ( object . scale . y != 1 ) string += '\n\tmesh.scale.y = ' + object . scale . y + ';' ;
169
169
if ( object . scale . z != 1 ) string += '\n\tmesh.scale.z = ' + object . scale . z + ';' ;
170
170
171
- string += '\n\tscene.addObject( mesh );' ; // string += '\n\tscene. add( mesh );';
171
+ string += '\n\tscene.add( mesh );' ;
172
172
173
173
_list . push ( string ) ;
174
174
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ UI.Viewport = function () {
70
70
_projector . unprojectVector ( vector , _camera ) ;
71
71
72
72
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 ) ;
74
74
75
75
if ( intersects . length ) {
76
76
@@ -92,7 +92,7 @@ UI.Viewport = function () {
92
92
_projector . unprojectVector ( vector , _camera ) ;
93
93
94
94
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 ) ;
96
96
97
97
if ( _SELECTED ) {
98
98
You can’t perform that action at this time.
0 commit comments