3D trail Effect
in
Programming Questions
•
2 years ago
Hey,
I'm fairly new to processing and I just need some help trying to get a 3D trail effect working.
I can do this in a 2D space by simply using:
fill(0, 10);
rect(0, 0, width, height);
But when I try to do it in a 3D space it seems to separate the 2D and 3D elements from each other, so the rectangle fades in the background but the sphere is redrawn across the screen.
Can anyone offer me any tips as to how I would achieve a trail effect with a sphere?
Thanks.
2