RuneI
Class WaterFallSpray

source: c:\runehov\RuneI\Classes\WaterFallSpray.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.ParticleSystem
         |
         +--RuneI.WaterFallSpray
Direct Known Subclasses:None

class WaterFallSpray
extends Engine.ParticleSystem

//============================================================================= // WaterFallSpray. //============================================================================= //Usage: //Place at top of waterfall, in middle of it's width, with the direction parallel to the SOURCE of waterfall

Source Code


00001	//=============================================================================
00002	// WaterFallSpray.
00003	//=============================================================================
00004	//Usage: 
00005	//Place at top of waterfall, in middle of it's width, with the direction parallel to the SOURCE of waterfall
00006	
00007	class WaterFallSpray expands ParticleSystem;
00008	
00009	defaultproperties
00010	{
00011	     bSpriteInEditor=True
00012	     ParticleCount=32
00013	     ParticleTexture(0)=Texture'RuneFX.splash3'
00014	     SpawnShape=PSHAPE_Line
00015	     ShapeVector=(X=75.000000,Y=6.000000,Z=10.000000)
00016	     VelocityMin=(Y=50.000000,Z=20.000000)
00017	     VelocityMax=(Y=100.000000,Z=50.000000)
00018	     ScaleMin=0.100000
00019	     ScaleMax=0.200000
00020	     LifeSpanMin=0.500000
00021	     LifeSpanMax=1.000000
00022	     AlphaStart=60
00023	     AlphaEnd=60
00024	     bApplyGravity=True
00025	     GravityScale=1.250000
00026	     bForceRender=True
00027	     bDirectional=True
00028	     Style=STY_Translucent
00029	}

End Source Code