Cogito, ergo sum
UE2:ParticleRadiator (U2)
Object >> Actor >> ParticleGenerator >> ParticleRadiator |
- Package:
- ParticleSystems
- This class in other games:
- U2XMP
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
$Author: Chargrove $ $Date: 8/19/02 7:35p $ $Revision: 4 $ Name: ParticleRadiator.uc Author: Aaron R Leiby Date: 28 March 2000 Description: Emits particles from the surface of the specified mesh. Notes: Only works with Golem (LegendMesh). How to use this class:
Properties[edit]
Property group 'ParticleRadiator'[edit]
AttachName[edit]
Type: string
bLOSClip[edit]
Type: bool
Clip using line of sight check?
bOrgiSpawn[edit]
Type: bool
Spawn particles at the origin of the selected triangle? (otherwise randomly distribute them across the surface of the triangle)
bStopIfHidden[edit]
Type: bool
Don't create new particles if MeshOwner.bHidden.
LODLevel[edit]
Type: int
Level of mesh LOD to use.
MeshOwner[edit]
Type: Actor
Set this if you want to use some other Actor's Mesh.
MinVolume[edit]
Type: float
Minimum volume that Level->Engine-Client->ParticleDensity is allowed to scale us to.
TriIndices[edit]
Order of indices to use when using TS_Indexed.
TriSelectMethod[edit]
Type: TriSelect
Volume[edit]
Type: float
Number of particles emitted per second.
VolumeScalePct[edit]
Type: float
Internal variables[edit]
iIndex[edit]
Type: int
Used internally for indexed triangle selection.
iTri[edit]
Type: int
Used internally for triangle selection.
ParticleTimer[edit]
Type: float
Used internally to collect "emission residue" <-- fancy term for rounding errors between ticks.
Default values[edit]
Property | Value |
---|---|
Texture | Texture'ParticleSystems.Icons.S_ParticleRadiator' |
Enums[edit]
TriSelect[edit]
- TS_Random
- Randomly pick a particle from the ParticleTemplates array.
- TS_Linear
- Cyclically iterate through the ParticleTemplates array.
- TS_Indexed
- Loops through the TriIndices array to use as indices.
- TS_RandIndex
- Randomly selects an index from the TriIndices array to use.
Events[edit]
TurnOn[edit]
Overrides: ParticleGenerator.TurnOn