C# Class UnityEngine.ParticleSystemRenderer

Inheritance: Renderer
ファイルを表示 Open project: CarlosHBC/UnityDecompiled Class Usage Examples

Private Properties

Property Type Description
GetMeshes int
INTERNAL_get_pivot void
INTERNAL_set_pivot void
Internal_GetEnabledVertexStreams ParticleSystemVertexStreams
Internal_GetMeshCount int
Internal_SetVertexStreams void
SetMeshes void

Public Methods

Method Description
AreVertexStreamsEnabled ( ParticleSystemVertexStreams streams ) : bool

Query whether the particle system renderer uses a particular set of vertex streams.

DisableVertexStreams ( ParticleSystemVertexStreams streams ) : void

Disable a set of vertex shader streams on the particle system renderer. The position stream is always enabled, and any attempts to remove it will be ignored.

EnableVertexStreams ( ParticleSystemVertexStreams streams ) : void

Enable a set of vertex shader streams on the particle system renderer.

GetEnabledVertexStreams ( ParticleSystemVertexStreams streams ) : ParticleSystemVertexStreams

Query whether the particle system renderer uses a particular set of vertex streams.

SetMeshes ( Mesh meshes ) : void

Set an array of meshes used as particles instead of a billboarded texture.

Private Methods

Method Description
GetMeshes ( Mesh meshes ) : int
INTERNAL_get_pivot ( Vector3 &value ) : void
INTERNAL_set_pivot ( Vector3 &value ) : void
Internal_GetEnabledVertexStreams ( ParticleSystemVertexStreams streams ) : ParticleSystemVertexStreams
Internal_GetMeshCount ( ) : int
Internal_SetVertexStreams ( ParticleSystemVertexStreams streams, bool enabled ) : void
SetMeshes ( Mesh meshes, int size ) : void

Method Details

AreVertexStreamsEnabled() public method

Query whether the particle system renderer uses a particular set of vertex streams.

public AreVertexStreamsEnabled ( ParticleSystemVertexStreams streams ) : bool
streams ParticleSystemVertexStreams Streams to query.
return bool

DisableVertexStreams() public method

Disable a set of vertex shader streams on the particle system renderer. The position stream is always enabled, and any attempts to remove it will be ignored.

public DisableVertexStreams ( ParticleSystemVertexStreams streams ) : void
streams ParticleSystemVertexStreams Streams to disable.
return void

EnableVertexStreams() public method

Enable a set of vertex shader streams on the particle system renderer.

public EnableVertexStreams ( ParticleSystemVertexStreams streams ) : void
streams ParticleSystemVertexStreams Streams to enable.
return void

GetEnabledVertexStreams() public method

Query whether the particle system renderer uses a particular set of vertex streams.

public GetEnabledVertexStreams ( ParticleSystemVertexStreams streams ) : ParticleSystemVertexStreams
streams ParticleSystemVertexStreams Streams to query.
return ParticleSystemVertexStreams

SetMeshes() public method

Set an array of meshes used as particles instead of a billboarded texture.

public SetMeshes ( Mesh meshes ) : void
meshes Mesh Array of meshes to be used.
return void