Particle
Table to work with particles.
Create(particle: string
, attach_type: Enum.ParticleAttachment
, entity [?]
: Entity
): integer
string
, attach_type: Enum.ParticleAttachment
, entity [?]
: Entity
): integer
Name
Type
Description
particle
string
Particle path
attach_type
Enum.ParticleAttachment
Attach type
entity [?]
Entity
= nil] Entity to own of the particle
Creates a particle and returns its index.
SetControlPoint(particle_index: integer
, control_point: integer
, value: Vector3
): void
integer
, control_point: integer
, value: Vector3
): void
Name
Type
Description
particle_index
integer
Particle index
control_point
integer
Control point
value
Vector3
Control point value
Sets the control point value of a particle.
Destroy(particle_index: integer
): void
integer
): void
Name
Type
Description
particle_index
integer
Particle index
Destroys the particle by index.
Last updated