I’m trying to create a VR experience that would involve reading in position data for 10k+ small particles over the course of 100 time points (say, over 10 seconds), so 1M values. The goal is to visualize the exact paths of these particles over time, so I’m thinking some like a particle system might not work. I’d also want to be able to view these particles in 3D space.
The straightforward way is to just spawn 10k GameObjects, then have each GameObject store and update its upcoming positions. Is this volume within the capabilities of Unity / is there a better way of doing this? Let’s say for now I just want to visualize the particles with no interactions.