Using Niagara to show stars in the sky

Hi!

I have the location of all of those bright stars in the sky. Someone has suggested me to use Niagara to draw them instead of using actors with a emissive material:

But I haven’t done anything before with Niagara.

How can I spawn something like that in a location (x, y, z) using Niagara?

The stars are spheres with an emissive material with different sizes.

Thanks!

I’m assuming you need to move them around for gameplay is why you’re using Niagara? If so, look at using Niagara Data Channels:

Now I’m using Actors. I have no idea about Niagara.

Someone has suggested me to use Niagara instead of spawn 8k actors.

I want to spawn (or whatever is called in Niagara) something that looks like a star using Niagara.

Thanks for your answer!

Niagara will be way more performant than actors. NDC will let you push data and use it in emitters however you need (position, color, size, duration…).

If you just need a star background, I would go with a material based approach on a sky dome/sphere for best performance.

I’ve found this: https://www.youtube.com/watch?v=0R7llmGGTXA

I need a tutorial or something to learn how to do it.