Reputation: 367
I just made a jsfiddle to demonstrate the issue. http://jsfiddle.net/georgeneil/64LF4/4/
I have a cube and 20 particles in the 'Scene'. The particles are created using THREE.ParticleSystem. Here some of the particles are behind the cube. While changing the opacity in the GUI control i was NOT able to see the particles. But it is clearly seen when i set the visibility of cube as false in the GUI control.
Can some one help me how to fix this issue. I need to see the particles when i reduce the opacity of the cube.
Upvotes: 1
Views: 187
Reputation: 104783
+1 for an excellent demo!
Opacity can be tricky. You need to do two things:
add transparent: true
as a property of your cube's material,
add the cube to the scene after you add the particles.
Here is an updated Fiddle: http://jsfiddle.net/64LF4/6/
Upvotes: 2