Skip to content

Commit 95bb462

Browse files
committed
Merge remote branch 'alteredq/master' into test
2 parents 95c1727 + eecf9d0 commit 95bb462

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/canvas_interactive_particles.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838
var programStroke = function ( context ) {
3939

40+
context.lineWidth = 0.05;
4041
context.beginPath();
4142
context.arc( 0, 0, 1, 0, PI2, true );
4243
context.closePath();
@@ -84,7 +85,7 @@
8485
renderer = new THREE.CanvasRenderer();
8586
renderer.setSize( window.innerWidth, window.innerHeight );
8687

87-
container.appendChild(renderer.domElement);
88+
container.appendChild( renderer.domElement );
8889

8990
stats = new Stats();
9091
stats.domElement.style.position = 'absolute';

examples/webgl_trackballcamera_earth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
scene.addLight( dirLight );
130130

131131
ambientLight = new THREE.AmbientLight( 0xFFFFFF );
132-
scene.addLight( ambientLight );
132+
//scene.addLight( ambientLight );
133133

134134
var planetTexture = THREE.ImageUtils.loadTexture( "textures/planets/earth_atmos_2048.jpg" ),
135135
cloudsTexture = THREE.ImageUtils.loadTexture( "textures/planets/earth_clouds_1024.png" ),

0 commit comments

Comments
 (0)