Particle System Force Field component reference
Access the Particle System from the Animation system
Optimize the Particle System with the C# Job SystemA Particle SystemA component that simulates fluid entities such as liquids, clouds and flames by generating and animating large numbers of small 2D images in the scene. More info
See in Glossary can use Unityâs C# Job System to apply custom behaviors to particles.
Unity distributes work from the C# Job System across worker threads, and can make use of the Burst Compiler. The GetParticles() and SetParticles() methods offer similar functionality, but run on the main thread and cannot make use of Unityâs Burst Compiler.
By default, a Particle System job only has access to one or more particles belonging to that Particle System. Unity passes this data to the job using a ParticleSystemJobData struct. You must pass any other data that the job requires as additional parameters.
To access particle data, Unity supports the following job types:
IJobParticleSystemThis job type executes a single job on a single worker thread. The job has access to every particle belonging to the Particle System. For example code on this job type, see the IJobParticleSystem.Execute() Scripting reference.
IJobParticleSystemParallelForThis job type executes multiple jobs across multiple worker threads. Each job can only access the particle at the index specified by the jobâs Execute() function. For example code on this job type, see the IJobParticleSystemParallelFor.Execute() Scripting reference.
IJobParticleSystemParallelForBatchThis job type executes multiple jobs across multiple worker threads. Each job can only access the particles within the range specified by the jobâs Execute() function. For example code on this job type, see the IJobParticleSystemParallelForBatch.Execute() Scripting reference.
BurstAs with any other C# job, you can use the Burst Compiler to compile your particle jobs into highly optimized Burst jobs. For more information, see the Burst Compiler documentation.
New feature in Unity 2019.3
Particle System Force Field component reference
Access the Particle System from the Animation system
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4