I’m trying to make a LIDAR-like system, where I spawn a bunch of dots to show your surroundings.
I’m shooting multiple dots in one frame, however all of the dots end up spawning in the same position.
(Tracers show where they should end up, the dot is where they actually end up.)
I’ve tried adding a delay to the volley section of the code, (where it spawns all 6 in one frame), and while this technically fixes it, it’s far too slow.
Here’s where I spawn the particle, this runs multiple times in the same frame which is causing the issue.
No, the dots are particles in 3D space. My issue is that trying to move the part and spawn a particle multiple times in the same frame ends up spawning all of the particles in the same spot.
I initially tried using neon parts but it was too laggy. I’d prefer to avoid using multiple particle emitters as well if possible, but I can try that if it’s needed.