Skip to main content
Unity logo
Cancel
Privacy Preferences
Cart
Applications
Sell Assets

Over 11,000 five-star assets

Rated by 85,000+ customers

Supported by 100,000+ forum members

Every asset moderated by Unity

Showing 1 - 10 of 28
User Reviews
Sort by
s
in 2024 still works great! (Unity 2021.3)
2 years ago
shayk_veryostudioson version 1.0
I was skeptical when I imported it but it does its job and does it well.
Was this review helpful?
0
0
c
Wildly unoptimized
2 years ago
crlstudioson version 1.0
It was nice to grab this asset just to get the gist of how I could manipulate particles via script. However, this is quite outdated and out of the box it allocates a HUGE amount of memory EVERY FRAME. I was able to take this from 1.3 MB of GC Alloc with huge lag spikes to running buttery smooth by implementing the same logic into a burst compiled job. private void Update() { var myParticles = new NativeArray<ParticleSystem.Particle>(ps.main.maxParticles, Allocator.TempJob); var numParticlesAlive = ps.GetParticles(myParticles); var step = speed * Time.deltaTime; var job = new ParticleUpdateJob { particles = myParticles, targetPosition = target.position, step = step }.Schedule(numParticlesAlive, 64); job.Complete(); ps.SetParticles(myParticles, numParticlesAlive); } [BurstCompile] private struct ParticleUpdateJob : IJobParallelFor { [NativeDisableParallelForRestriction] public NativeArray<ParticleSystem.Particle> particles; public float3 targetPosition; public float step; public void Execute(int index) { var particle = particles[index]; particle.position = math.lerp(particle.position, targetPosition, step); particles[index] = particle; } }
Was this review helpful?
4
0
A
Cool looking particle simulation
2 years ago
AmaraListuon version 1.0
I feel I need the responsible to use it with care once I import it to my project. No chance to waste it.
Was this review helpful?
0
0
n
really cool
2 years ago
nathanpederson06on version 1.0
the lightning effect is sick
Was this review helpful?
0
0
S
SO NICE , GOOD JOB
3 years ago
SimonYu999on version 1.0
I will use it in my game,just what I want, can not believe it is free! Thanks!!
Was this review helpful?
0
0
d
Excellent design work
3 years ago
darashaydaon version 1.0
Here is an example of an excellent designing mind even though might lack a little bit on the programming side, and who cares! I wish this person come back and create more and more assets. As another reviewer noted: 1. Move m_Particles = new ParticleSystem.Particle[ps.main.maxParticles]; to Start () 2. Add this to the fist line of Update if (!ps.isPlaying) return; I tested this attractor in multiple instances in a scene and works terrific!
Was this review helpful?
1
0
k
Unoptimised
3 years ago
kawaiianthonyon version 1.0
I noticed some VERY HUGE performance spikes when using this asset. After some digging in I found that the Attractor creates a new array each update and it updates whether the particle system is playing or not, which is both unnecessary. I changed 2 lines of code to make it better. For example in particleAttractorLinear.cs: - Add [ if(!ps.isPlaying) return; ] at first line of Update - Move [ m_Particles = new ParticleSystem.Particle[ps.main.maxParticles]; ] from Update to end of Start method.
Was this review helpful?
5
0
N
One of the best assets from the asset store
4 years ago
NotBruskion version 1.0
This looks beautifull and just works perfectly, and in my project i added post processing so its really good eye candy
Was this review helpful?
2
0
r
best free assets
5 years ago
raaan127on version 1.0
very good for using and learning. It's been 2 years and I still using this a lot
Was this review helpful?
1
0
N
Awsome
5 years ago
Niomorraon version 1.0
Thanks a lot. It really helps a lot to understand how particles are working
Was this review helpful?
0
0
Quality assets
Over 11,000 five-star assets
Trusted
Rated by 85,000+ customers
Community support
Supported by 100,000+ forum members
Unity logo

Language

Feedback

Partners Program

Partners
Copyright © 2026 Unity Technologies
All prices are exclusive of tax