Description | Hierarchy | Fields | Methods | Properties |
type TAdParticleList = class(TAdList)
A list managing the particles. Particles are automaticly freed when they are deleted from the list.
![]() |
procedure Add(AItem:TAdParticle); |
![]() |
property Items[AIndex:integer]: TAdParticle read GetItem write SetItem; |
![]() |
procedure Add(AItem:TAdParticle); |
Adds a particle to the list. Remember that the list "owns" the particle, what means that it will automatically be freed when removing it from the list. This method is not thread safe. Remember not to add particles when the particle processing thread is not waiting. |
![]() |
property Items[AIndex:integer]: TAdParticle read GetItem write SetItem; |
Provides access on the particle list. Remember that this method is not thread safe. Particle data should only be changed, when the particle processing thread is currently waiting. |