Skip to content
Advertisement

Why are all particles positioned in the center on x axis in THREE.JS

I’m new to THREE.JS and I’m trying to figure out how to make particle system and I can’t get it to work properly. As title says all of the particles are positioned in the center on X axis, it seems that Y and Z are ok.

Picture of the result: https://i.stack.imgur.com/xUuAn.png What I want to achieve: https://i.stack.imgur.com/vA0tL.jpg

Code:

JavaScript

Advertisement

Answer

The error occurs when you initialize your camera. Your aspect ratio is

window.innerWidth - 10 / window.innerHeight

Example: 1920 - 10 / 1080 = 1919.99 (wrong aspect ratio)

but due to the order of operations, it’s calculating the division first so 10 / height happens before the subtraction. Just make sure you use parentheses correctly and the problem will be solved:

(window.innerWidth - 10) / window.innerHeight

Example: (1920 - 10) / 1080 = 1.76 (Correct aspect ratio)

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement