diff --git a/editor/js/Menubar.Add.js b/editor/js/Menubar.Add.js index b7f5deccb751c2b0ade6b5a11526cace5cad5d60..b9e8c8ef6b508822c25a231daf8b10ec5fbeb1b4 100644 --- a/editor/js/Menubar.Add.js +++ b/editor/js/Menubar.Add.js @@ -284,7 +284,7 @@ Menubar.Add = function ( editor ) { light.name = 'SpotLight ' + ( ++ lightCount ); light.target.name = 'SpotLight ' + ( lightCount ) + ' Target'; - light.position.set( 0, 1, 0 ).multiplyScalar( 200 ); + light.position.set( 0.5, 1, 0.75 ).multiplyScalar( 200 ); editor.addObject( light ); editor.select( light ); @@ -306,7 +306,7 @@ Menubar.Add = function ( editor ) { light.name = 'DirectionalLight ' + ( ++ lightCount ); light.target.name = 'DirectionalLight ' + ( lightCount ) + ' Target'; - light.position.set( 1, 1, 1 ).multiplyScalar( 200 ); + light.position.set( 0.5, 1, 0.75 ).multiplyScalar( 200 ); editor.addObject( light ); editor.select( light ); @@ -328,7 +328,7 @@ Menubar.Add = function ( editor ) { var light = new THREE.HemisphereLight( skyColor, groundColor, intensity ); light.name = 'HemisphereLight ' + ( ++ lightCount ); - light.position.set( 1, 1, 1 ).multiplyScalar( 200 ); + light.position.set( 0.5, 1, 0.75 ).multiplyScalar( 200 ); editor.addObject( light ); editor.select( light );