ParticleSystem

class in UnityEngine

/

Inherits from:Component

Switch to Manual

Description

Script interface for particle systems (Shuriken).

Shuriken is a powerful and versatile particle system component.

General parameters

The Particle System's general parameters are kept inside a special Main module. These parameters are visible in the Inspector above all the other modules:



In script, these parameters are accessible through ParticleSystem.main.

Module effect multipliers

Every module has special multiplier properties that allow you to change the overall effect of a curve without having to edit the curve itself. These multiplier properties are all named after the curve they affect - for instance ParticleSystem.emission.rateMultiplier controls the overall effect of ParticleSystem.emission.rate in a given system.

Constant value shorthand

Parameters support a shorthand notation for simple constant values. To set a constant value for a parameter, all you need to do is assign a number to it. It is not necessary to create a MinMaxCurve or MinMaxGradient object in the ParticleSystemCurveMode.Constant mode.

For example, instead of:
ParticleSystem.emission.rate = new ParticleSystem.MinMaxCurve(5.0f);
write:
ParticleSystem.emission.rate = 5.0f;

Performance note: When setting properties on particle modules, the settings are passed immediately into native code. This gives the best performance. This means that setting properties on a module struct doesn't set something in script that requires setting back to the particle system; it all happens automatically.

See Also: Particle.

Variables

collisionЗациклена ли система частиц?
colorBySpeedРаботает ли система частиц в данный момент?
colorOverLifetimeЗациклена ли система частиц?
customDataAccess the particle system Custom Data module.
emissionЗациклена ли система частиц?
externalForcesЗациклена ли система частиц?
forceOverLifetimeОстановлена ли работа системы частиц на данный момент?
inheritVelocityРаботает ли система частиц в данный момент?
isEmittingIs the particle system currently emitting particles? A particle system may stop emitting when its emission module has finished, it has been paused or if the system has been stopped using Stop with the StopEmitting flag. Resume emitting by calling Play.
isPausedПрервана ли работа системы частиц на данный момент?
isPlayingРаботает ли система частиц в данный момент?
isStoppedОстановлена ли работа системы частиц на данный момент?
lightsAccess the particle system lights module.
limitVelocityOverLifetimeAccess the particle system limit velocity over lifetime module.
mainAccess the main particle system settings.
noiseAccess the particle system noise module.
particleCountТекущее количество частиц (только для чтения).
randomSeedЗациклена ли система частиц?
rotationBySpeedОстановлена ли работа системы частиц на данный момент?
rotationOverLifetimeРаботает ли система частиц в данный момент?
shapeОстановлена ли работа системы частиц на данный момент?
sizeBySpeedОстановлена ли работа системы частиц на данный момент?
sizeOverLifetimeПрервана ли работа системы частиц на данный момент?
subEmittersПрервана ли работа системы частиц на данный момент?
textureSheetAnimationПрервана ли работа системы частиц на данный момент?
timeПозиция воспроизведения, в секундах.
trailsAccess the particle system trails module.
triggerОстановлена ли работа системы частиц на данный момент?
useAutoRandomSeedControls whether the Particle System uses an automatically-generated random number to seed the random number generator.
velocityOverLifetimeРаботает ли система частиц в данный момент?

Public Functions

ClearУдалить все частицы в системе частиц.
EmitИспустить count частиц.
GetCustomParticleDataGet a stream of custom per-particle data.
GetParticlesGets the particles of this particle system.
IsAliveDoes the system have any live particles (or will produce more)?
PausePauses the system so no new particles are emitted and the existing particles are not updated.
PlayОстановить работу системы частиц.
SetCustomParticleDataSet a stream of custom per-particle data.
SetParticlesSets the particles of this particle system.
SimulateFastforwards the particle system by simulating particles over given period of time, then pauses it.
StopStops playing the particle system using the supplied stop behaviour.

Inherited members

Variables

gameObjectИгровой объект к которому прикреплён данный компонент. Компонент всегда прикреплён к игровому объекту.
tagТег данного игрового объекта.
transformThe Transform attached to this GameObject.
hideFlagsShould the object be hidden, saved with the scene or modifiable by the user?
nameThe name of the object.

Public Functions

BroadcastMessageВызывает метод названный methodName на каждом MonoBehaviour этого game object-а или любого из его потомков.
CompareTagПомечен ли данный игровой объект тегом tag?
GetComponentВозвращает компонент типа type, если он прикреплен к игровому объекту и null, если не прикреплен.
GetComponentInChildrenВозвращает компонент типа type в GameObject или некоторого его потомка через поиск в глубину.
GetComponentInParentВозвращает все компоненты типа type из GameObject'а или из любого его родителя.
GetComponentsВозвращает все компоненты типа type в GameObject.
GetComponentsInChildrenВозвращает все компоненты типа type в GameObject или любому из его потомков.
GetComponentsInParentВозвращает все компоненты типа type в GameObject или любому из его родителей.
SendMessageВызывает метод с названием methodName в каждом MonoBehaviour в этом игровом объекте.
SendMessageUpwardsВызывает метод с именем methodName в каждом MonoBehaviour в этом игровом объекте и в каждом предке поведения.
GetInstanceIDReturns the instance id of the object.
ToStringReturns the name of the GameObject.

Static Functions

DestroyУдаляет GameObject, Component или Asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadMakes the object target not be destroyed automatically when loading a new scene.
FindObjectOfTypeReturns the first active loaded object of Type type.
FindObjectsOfTypeReturns a list of all active loaded objects of Type type.
InstantiateClones the object original and returns the clone.

Operators

boolDoes the object exist?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.