Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

XEffects.BloodJet


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
//=============================================================================
// BloodJet.
//=============================================================================
class BloodJet extends xEmitter;

#exec OBJ LOAD File=XGameShadersB.utx

var class<xScorch> SplatterClass;

state Ticking
{
	simulated function Tick( float dt )
	{
		if( LifeSpan < 1.0 )
		{
			mRegenRange[0] *= LifeSpan;
			mRegenRange[1] = mRegenRange[0];
		}
	}
}

simulated function timer()
{
	GotoState('Ticking');
}

simulated function PostNetBeginPlay()
{
	SetTimer(LifeSpan - 1.0,false);
	if ( Level.NetMode != NM_DedicatedServer )
		WallSplat();
	Super.PostNetBeginPlay();
}

simulated function WallSplat()
{
	local vector WallHit, WallNormal;
	local Actor WallActor;

	if ( FRand() > 0.8 )
		return;
	WallActor = Trace(WallHit, WallNormal, Location + vect(0,0,-200), Location, false);
	if ( WallActor != None )
		spawn(SplatterClass,,,WallHit + 20 * (WallNormal + VRand()), rotator(-WallNormal));
}

defaultproperties  
{
	SplatterClass=class'BloodSplatter'
    LifeSpan=3.5
    Style=STY_Alpha
    mParticleType=PT_Sprite
    mDirDev=(X=0.05,Y=0.05,Z=0.05) 
    mPosDev=(X=0.0,Y=0.0,Z=0.0)
    mDelayRange(0)=0.000000 
    mDelayRange(1)=0.00000
    mLifeRange(0)=1.00000 
    mLifeRange(1)=1.000000
    mSpeedRange(0)=50.000000
    mSpeedRange(1)=90.000000 
    mSizeRange(0)=1.5
    mSizeRange(1)=2.5
    mMassRange(0)=0.4
    mMassRange(1)=0.5
    mGrowthRate=12.0
	mRegenRange(0)=80.000000
	mRegenRange(1)=80.000000
    mRegenOnTime(0)=1.0
	mRegenOnTime(1)=2.0
	mRegenOffTime(0)=0.4
	mRegenOffTime(1)=1.0
    mRegenDist=0.000000
    mRandOrient=true
    mMaxParticles=60
    mStartParticles=0
    DrawScale=1.000000
    ScaleGlow=1.000000
    mAirResistance=0.6
    mAttenuate=true
    mRegenPause=true
    mRegen=true
    Skins(0)=Material'XGameShadersB.Blood.BloodJetC'
    CollisionRadius=0.000000
    CollisionHeight=0.000000
    mColorRange(0)=(R=255,G=255,B=255,A=255)
    mColorRange(1)=(R=255,G=255,B=255,A=255)
    mCollision=False
    bForceAffected=False
    mRandTextures=True
    mNumTileColumns=4
    mNumTileRows=4
    bUnlit=true    
    bNetTemporary=true
    RemoteRole=ROLE_None
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:22.000 - Creation time: Do 14.8.2014 09:58:35.206 - Created with UnCodeX