Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 00157 00158 00159 00160 00161 00162 00163 00164 00165 00166 00167 00168 00169 00170 00171 00172 00173 00174 00175 00176 00177 00178 00179 00180 00181 00182 00183 00184 00185 00186 00187 00188 00189 00190 00191 00192 00193 00194 00195 00196 00197 00198 00199 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 00250 00251 00252 00253 00254 00255 00256 00257 00258 00259 00260 00261 00262 00263 00264 00265 00266 00267 00268 00269 00270 00271 00272 00273 00274 00275 00276 00277 00278 00279 00280 00281 00282 00283 00284 00285 00286 00287 00288 00289 00290 00291 00292 00293 00294 00295 00296 00297 00298 00299 00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 00320 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 00350 00351 00352 00353 00354 00355 00356 00357 00358 00359 00360 00361 00362 00363 00364 00365 00366 00367 00368 00369 00370 00371 00372 00373 00374 00375 00376 00377 00378 00379 00380 00381 00382 00383 00384 00385 00386 00387 00388 00389 00390 00391 00392 00393 00394 00395 00396 00397 00398 |
//============================================================================= // ParticleEmitter: Base class for sub- emitters. // // make sure to keep structs in sync in UnParticleSystem.h //============================================================================= class ParticleEmitter extends Object abstract editinlinenew native; enum EBlendMode { BM_MODULATE, BM_MODULATE2X, BM_MODULATE4X, BM_ADD, BM_ADDSIGNED, BM_ADDSIGNED2X, BM_SUBTRACT, BM_ADDSMOOTH, BM_BLENDDIFFUSEALPHA, BM_BLENDTEXTUREALPHA, BM_BLENDFACTORALPHA, BM_BLENDTEXTUREALPHAPM, BM_BLENDCURRENTALPHA, BM_PREMODULATE, BM_MODULATEALPHA_ADDCOLOR, BM_MODULATEINVALPHA_ADDCOLOR, BM_MODULATEINVCOLOR_ADDALPHA, BM_HACK }; enum EParticleDrawStyle { PTDS_Regular, PTDS_AlphaBlend, PTDS_Modulated, PTDS_Translucent, PTDS_AlphaModulate_MightNotFogCorrectly, PTDS_Darken, PTDS_Brighten }; enum EParticleCoordinateSystem { PTCS_Independent, PTCS_Relative, PTCS_Absolute }; enum EParticleRotationSource { PTRS_None, PTRS_Actor, PTRS_Offset, PTRS_Normal }; enum EParticleVelocityDirection { PTVD_None, PTVD_StartPositionAndOwner, PTVD_OwnerAndStartPosition, PTVD_AddRadial }; enum EParticleStartLocationShape { PTLS_Box, PTLS_Sphere, PTLS_Polar, PTLS_All }; enum EParticleEffectAxis { PTEA_NegativeX, PTEA_PositiveZ }; enum EParticleCollisionSound { PTSC_None, PTSC_LinearGlobal, PTSC_LinearLocal, PTSC_Random }; enum EParticleMeshSpawning { PTMS_None, PTMS_Linear, PTMS_Random }; enum ESkelLocationUpdate { PTSU_None, PTSU_SpawnOffset, PTSU_Location }; struct ParticleTimeScale { var () float RelativeTime; // always in range [0..1] var () float RelativeSize; }; struct ParticleRevolutionScale { var () float RelativeTime; // always in range [0..1] var () vector RelativeRevolution; }; struct ParticleColorScale { var () float RelativeTime; // always in range [0..1] var () color Color; }; struct ParticleVelocityScale { var () float RelativeTime; // always in range [0..1] var () vector RelativeVelocity; }; struct Particle { var vector Location; var vector OldLocation; var vector Velocity; var vector StartSize; var vector SpinsPerSecond; var vector StartSpin; var vector RevolutionCenter; var vector RevolutionsPerSecond; var vector RevolutionsMultiplier; var vector Size; var vector StartLocation; var vector ColorMultiplier; var vector VelocityMultiplier; var vector OldMeshLocation; var color Color; var float Time; var float MaxLifetime; var float Mass; var int HitCount; var int Flags; var int Subdivision; var int BoneIndex; }; struct ParticleSound { var () sound Sound; var () range Radius; var () range Pitch; var () int Weight; var () range Volume; var () range Probability; }; // FLAGS var (Collision) bool UseCollision; var (Collision) bool UseCollisionPlanes; var (Collision) bool UseMaxCollisions; var (Collision) bool UseSpawnedVelocityScale; var (Color) bool UseColorScale; var (Fading) bool FadeOut; var (Fading) bool FadeIn; var (Force) bool UseActorForces; var (General) bool ResetAfterChange; var (Local) bool RespawnDeadParticles; var (Local) bool AutoDestroy; var (Local) bool AutoReset; var (Local) bool Disabled; var bool Backup_Disabled; // for resetting var (Local) bool DisableFogging; var (MeshSpawning) bool VelocityFromMesh; var (MeshSpawning) bool UniformMeshScale; var (MeshSpawning) bool UniformVelocityScale; var (MeshSpawning) bool UseColorFromMesh; var (MeshSpawning) bool SpawnOnlyInDirectionOfNormal; var (Rendering) bool AlphaTest; var (Rendering) bool AcceptsProjectors; var (Rendering) bool ZTest; var (Rendering) bool ZWrite; var (Revolution) bool UseRevolution; var (Revolution) bool UseRevolutionScale; var (Rotation) bool SpinParticles; var (Rotation) bool DampRotation; var (Size) bool UseSizeScale; var (Size) bool UseAbsoluteTimeForSizeScale; var (Size) bool UseRegularSizeScale; var (Size) bool UniformSize; var (Size) bool DetermineVelocityByLocationDifference; var (Size) bool ScaleSizeXByVelocity; var (Size) bool ScaleSizeYByVelocity; var (Size) bool ScaleSizeZByVelocity; var (Spawning) bool AutomaticInitialSpawning; var (Texture) bool BlendBetweenSubdivisions; var (Texture) bool UseSubdivisionScale; var (Texture) bool UseRandomSubdivision; var (Trigger) bool TriggerDisabled; var (Trigger) bool ResetOnTrigger; var (Velocity) bool UseVelocityScale; var (Velocity) bool AddVelocityFromOwner; var (Performance) float LowDetailFactor; var (Acceleration) vector Acceleration; var (Collision) vector ExtentMultiplier; var (Collision) rangevector DampingFactorRange; var (Collision) array<plane> CollisionPlanes; var (Collision) range MaxCollisions; var (Collision) int SpawnFromOtherEmitter; var (Collision) int SpawnAmount; var (Collision) rangevector SpawnedVelocityScaleRange; var (Color) array<ParticleColorScale> ColorScale; var (Color) float ColorScaleRepeats; var (Color) rangevector ColorMultiplierRange; var (Color) float Opacity; var (Fading) plane FadeOutFactor; var (Fading) float FadeOutStartTime; var (Fading) plane FadeInFactor; var (Fading) float FadeInEndTime; var (General) EParticleCoordinateSystem CoordinateSystem; var (General) const int MaxParticles; var (General) EParticleEffectAxis EffectAxis; var (Local) range AutoResetTimeRange; var (Local) string Name; var (Local) EDetailMode DetailMode; var (Location) vector StartLocationOffset; var (Location) rangevector StartLocationRange; var (Location) int AddLocationFromOtherEmitter; var (Location) EParticleStartLocationShape StartLocationShape; var (Location) range SphereRadiusRange; var (Location) rangevector StartLocationPolarRange; var (Mass) range StartMassRange; var (MeshSpawning) staticmesh MeshSpawningStaticMesh; var (MeshSpawning) EParticleMeshSpawning MeshSpawning; var (MeshSpawning) rangevector VelocityScaleRange; var (MeshSpawning) rangevector MeshScaleRange; var (MeshSpawning) vector MeshNormal; var (MeshSpawning) range MeshNormalThresholdRange; var (Rendering) int AlphaRef; var (Revolution) rangevector RevolutionCenterOffsetRange; var (Revolution) rangevector RevolutionsPerSecondRange; var (Revolution) array<ParticleRevolutionScale> RevolutionScale; var (Revolution) float RevolutionScaleRepeats; var (Rotation) EParticleRotationSource UseRotationFrom; var (Rotation) rotator RotationOffset; var (Rotation) vector SpinCCWorCW; var (Rotation) rangevector SpinsPerSecondRange; var (Rotation) rangevector StartSpinRange; var (Rotation) rangevector RotationDampingFactorRange; var (Rotation) vector RotationNormal; var (Size) array<ParticleTimeScale> SizeScale; var (Size) float SizeScaleRepeats; var (Size) rangevector StartSizeRange; var (Size) vector ScaleSizeByVelocityMultiplier; var (Size) float ScaleSizeByVelocityMax; var (SkeletalMesh) ESkelLocationUpdate UseSkeletalLocationAs; var (SkeletalMesh) actor SkeletalMeshActor; var (SkeletalMesh) vector SkeletalScale; var (SkeletalMesh) range RelativeBoneIndexRange; var (Sound) array<ParticleSound> Sounds; var (Sound) EParticleCollisionSound SpawningSound; var (Sound) range SpawningSoundIndex; var (Sound) range SpawningSoundProbability; var (Sound) EParticleCollisionSound CollisionSound; var (Sound) range CollisionSoundIndex; var (Sound) range CollisionSoundProbability; var (Spawning) float ParticlesPerSecond; var (Spawning) float InitialParticlesPerSecond; var (Texture) EParticleDrawStyle DrawStyle; var (Texture) texture Texture; var (Texture) int TextureUSubdivisions; var (Texture) int TextureVSubdivisions; var (Texture) array<float> SubdivisionScale; var (Texture) int SubdivisionStart; var (Texture) int SubdivisionEnd; var (Tick) float SecondsBeforeInactive; var (Tick) float MinSquaredVelocity; var (Time) range InitialTimeRange; var (Time) range LifetimeRange; var (Time) range InitialDelayRange; var (Trigger) range SpawnOnTriggerRange; var (Trigger) float SpawnOnTriggerPPS; var (Velocity) rangevector StartVelocityRange; var (Velocity) range StartVelocityRadialRange; var (Velocity) vector MaxAbsVelocity; var (Velocity) rangevector VelocityLossRange; var (Velocity) bool RotateVelocityLossRange; var (Velocity) int AddVelocityFromOtherEmitter; var (Velocity) rangevector AddVelocityMultiplierRange; var (Velocity) EParticleVelocityDirection GetVelocityDirectionFrom; var (Velocity) array<ParticleVelocityScale> VelocityScale; var (Velocity) float VelocityScaleRepeats; var (Warmup) float WarmupTicksPerSecond; var (Warmup) float RelativeWarmupTime; var transient emitter Owner; var transient bool Initialized; var transient bool Inactive; var transient bool RealDisableFogging; var transient bool AllParticlesDead; var transient bool WarmedUp; var transient float InactiveTime; var transient array<Particle> Particles; var transient int ParticleIndex; // index into circular list of particles var transient int ActiveParticles; // currently active particles var transient float PPSFraction; // used to keep track of fractional PPTick var transient box BoundingBox; var transient vector RealExtentMultiplier; var transient int OtherIndex; var transient float InitialDelay; var transient vector GlobalOffset; var transient float TimeTillReset; var transient int PS2Data; var transient int MaxActiveParticles; var transient int CurrentCollisionSoundIndex; var transient int CurrentSpawningSoundIndex; var transient int CurrentMeshSpawningIndex; var transient float MaxSizeScale; var transient int KillPending; var transient int DeferredParticles; var transient vector RealMeshNormal; var transient array<vector> MeshVertsAndNormals; var transient int CurrentSpawnOnTrigger; var transient int RenderableParticles; var transient rangevector RealVelocityLossRange; native function SpawnParticle( int Amount ); native function Trigger(); native function Reset(); defaultproperties { RespawnDeadParticles=Wahr UniformMeshScale=Wahr UniformVelocityScale=Wahr AlphaTest=Wahr ZTest=Wahr UseRegularSizeScale=Wahr AutomaticInitialSpawning=Wahr TriggerDisabled=Wahr LowDetailFactor=0.650000 ExtentMultiplier=(X=1.000000,Y=1.000000,Z=1.000000) DampingFactorRange=(X=(Min=1.000000,Max=1.000000),Y=(Min=1.000000,Max=1.000000),Z=(Min=1.000000,Max=1.000000)) SpawnFromOtherEmitter=-1 ColorMultiplierRange=(X=(Min=1.000000,Max=1.000000),Y=(Min=1.000000,Max=1.000000),Z=(Min=1.000000,Max=1.000000)) Opacity=1.000000 FadeOutFactor=(W=1.000000,X=1.000000,Y=1.000000,Z=1.000000) FadeInFactor=(W=1.000000,X=1.000000,Y=1.000000,Z=1.000000) MaxParticles=10 AddLocationFromOtherEmitter=-1 StartMassRange=(Min=1.000000,Max=1.000000) VelocityScaleRange=(X=(Min=1.000000,Max=1.000000),Y=(Min=1.000000,Max=1.000000),Z=(Min=1.000000,Max=1.000000)) MeshScaleRange=(X=(Min=1.000000,Max=1.000000),Y=(Min=1.000000,Max=1.000000),Z=(Min=1.000000,Max=1.000000)) MeshNormal=(Z=1.000000) SpinCCWorCW=(X=0.500000,Y=0.500000,Z=0.500000) StartSizeRange=(X=(Min=100.000000,Max=100.000000),Y=(Min=100.000000,Max=100.000000),Z=(Min=100.000000,Max=100.000000)) ScaleSizeByVelocityMultiplier=(X=1.000000,Y=1.000000,Z=1.000000) ScaleSizeByVelocityMax=10000000.000000 SkeletalScale=(X=1.000000,Y=1.000000,Z=1.000000) RelativeBoneIndexRange=(Max=1.000000) DrawStyle=PTDS_Translucent Texture=Texture'Engine.S_Emitter' SecondsBeforeInactive=1.000000 LifetimeRange=(Min=4.000000,Max=4.000000) AddVelocityFromOtherEmitter=-1 AddVelocityMultiplierRange=(X=(Min=1.000000,Max=1.000000),Y=(Min=1.000000,Max=1.000000),Z=(Min=1.000000,Max=1.000000)) } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |