A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.unity3d.com/Manual/../ScriptReference/ParticleSystem.GetParticles.html below:

Unity - Scripting API: ParticleSystem.GetParticles

ParticleSystem.GetParticles Suggest a change Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close Your name Your email Suggestion*

Cancel

Switch to Manual

Declarationpublic int GetParticles(out Particle[] particles);

Declarationpublic int GetParticles(out Particle[] particles, int size);

Declarationpublic int GetParticles(out Particle[] particles, int size, int offset);

Declarationpublic int GetParticles(out NativeArray<Particle> particles);

Declarationpublic int GetParticles(out NativeArray<Particle> particles, int size);

Declarationpublic int GetParticles(out NativeArray<Particle> particles, int size, int offset);

Parameters Parameter Description particles Output particle buffer, containing the current particle state. size The number of elements that are read from the Particle System. offset The offset into the active particle list, from which to copy the particles. Returns

int The number of particles written to the input particle array (the number of particles currently alive).

Description

Gets the particles of this Particle System.

This method is allocation free as long the input "particles" array is preallocated once (see example below). The method only gets the particles that are currently alive in the Particle System when it is called, so it may only get a small part of the particles array.

Additional resources: Particle, SetParticles.

using UnityEngine;

[RequireComponent(typeof(ParticleSystem))] public class ParticleFlow : MonoBehaviour { ParticleSystem m_System; ParticleSystem.Particle[] m_Particles; public float m_Drift = 0.01f;

private void LateUpdate() { InitializeIfNeeded();

// GetParticles is allocation free because we reuse the m_Particles buffer between updates int numParticlesAlive = m_System.GetParticles(m_Particles);

// Change only the particles that are alive for (int i = 0; i < numParticlesAlive; i++) { m_Particles[i].velocity += Vector3.up * m_Drift; }

// Apply the particle changes to the Particle System m_System.SetParticles(m_Particles, numParticlesAlive); }

void InitializeIfNeeded() { if (m_System == null) m_System = GetComponent<ParticleSystem>();

if (m_Particles == null || m_Particles.Length < m_System.main.maxParticles) m_Particles = new ParticleSystem.Particle[m_System.main.maxParticles]; } }


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