Anton nelson
Anton nelson

Reputation: 333

Make 2D particle system in Unity

SO I saw a tutorial online how to make a particle system, and I made it. Only thing is, I want to use it for a 2D Menu. So when I add the particles in front of the canvas, they don't show up in 2D. How do I make particles that will show up on a 2D menu?

Upvotes: 0

Views: 7058

Answers (1)

Serlite
Serlite

Reputation: 12258

You can try positioning your Canvas in World Space, then moving it behind the particle system. This will allow the Canvas to be positioned like all the other objects in your scene, and no longer be constrained to the camera.

Here's a guide from Unity on how to do it.

Upvotes: 2

Related Questions