Search Unity

How can i create this type of particles?

Discussion in 'General Graphics' started by Joshua21345, Oct 25, 2022.

  1. Joshua21345

    Joshua21345

    Joined:
    Oct 25, 2022
    Posts:
    2
    shikkuu_unity likes this.
  2. mgear

    mgear

    Joined:
    Aug 3, 2010
    Posts:
    9,448
    looks like regular particles,
    maybe with kind of cloud puff or blurred circle texture initially (separate particle system),
    then some flame like textures or texture sheet when moving
    upload_2022-10-25_14-58-43.png
     
    Joshua21345 and shikkuu_unity like this.
  3. Joshua21345

    Joshua21345

    Joined:
    Oct 25, 2022
    Posts:
    2
    Thanks you for the answer, but im really new to unity, do you maybe have some sort of tutorial or idea on how to do what you just said.
     
  4. mgear

    mgear

    Joined:
    Aug 3, 2010
    Posts:
    9,448
    not sure if there is specific tutorial for that effect..

    but its possible to learn it by checking few tutorials
    then just play with the settings to get similar results.

    https://learn.unity.com/tutorial/introduction-to-particle-systems
    https://learn.unity.com/project/getting-started-with-particle-systems

    https://www.youtube.com/results?search_query=unity+particle+system

    after you get similar effect running in particle system,
    you can control it from script (so when you press dash, you can emit particles or enable particle system)
    https://docs.unity3d.com/ScriptReference/ParticleSystem.Emit.html

    and i'd probably use at least 2 or more particle systems, one for each effect, easier than trying to combine all in one..