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

UnrealShare.SpriteExplosion


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
//=============================================================================
// SpriteExplosion.
//=============================================================================
class SpriteExplosion extends Effects;

var() Texture s_Exp[20];

#exec Texture Import File=models\exp001.pcx Name=s_Exp001 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp002.pcx Name=s_Exp002 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp003.pcx Name=s_Exp003 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp004.pcx Name=s_Exp004 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp005.pcx Name=s_Exp005 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp006.pcx Name=s_Exp006 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp007.pcx Name=s_Exp007 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp008.pcx Name=s_Exp008 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp009.pcx Name=s_Exp009 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp010.pcx Name=s_Exp010 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp011.pcx Name=s_Exp011 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp012.pcx Name=s_Exp012 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp013.pcx Name=s_Exp013 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp014.pcx Name=s_Exp014 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp015.pcx Name=s_Exp015 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp016.pcx Name=s_Exp016 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp017.pcx Name=s_Exp017 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp018.pcx Name=s_Exp018 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp019.pcx Name=s_Exp019 Mips=Off Mask=On Flags=2
#exec Texture Import File=models\exp020.pcx Name=s_Exp020 Mips=Off Mask=On Flags=2

var int i;

simulated function BeginPlay()
{
    Super.BeginPlay();
    i = 1;
    Texture = s_Exp[i];
    if ( Level.NetMode != NM_DedicatedServer )
        PlaySound (EffectSound1);   
    MakeNoise(1.0);     
}

simulated function Tick( float DeltaTime )
{
    i++;
    if ( Level.NetMode != NM_DedicatedServer )
        Texture = s_Exp[i];
    if (i > 18) Destroy();
}

defaultproperties
{
     s_Exp(1)=Texture'UnrealShare.s_Exp001'
     s_Exp(2)=Texture'UnrealShare.s_Exp002'
     s_Exp(3)=Texture'UnrealShare.s_Exp003'
     s_Exp(4)=Texture'UnrealShare.s_Exp004'
     s_Exp(5)=Texture'UnrealShare.s_Exp005'
     s_Exp(6)=Texture'UnrealShare.s_Exp006'
     s_Exp(7)=Texture'UnrealShare.s_Exp007'
     s_Exp(8)=Texture'UnrealShare.s_Exp008'
     s_Exp(9)=Texture'UnrealShare.s_Exp009'
     s_Exp(10)=Texture'UnrealShare.s_Exp010'
     s_Exp(11)=Texture'UnrealShare.s_Exp011'
     s_Exp(12)=Texture'UnrealShare.s_Exp012'
     s_Exp(13)=Texture'UnrealShare.s_Exp013'
     s_Exp(14)=Texture'UnrealShare.s_Exp014'
     s_Exp(15)=Texture'UnrealShare.s_Exp015'
     s_Exp(16)=Texture'UnrealShare.s_Exp016'
     s_Exp(17)=Texture'UnrealShare.s_Exp017'
     s_Exp(18)=Texture'UnrealShare.s_Exp018'
     s_Exp(19)=Texture'UnrealShare.s_Exp019'
     RemoteRole=ROLE_SimulatedProxy
     DrawType=DT_Sprite
     Texture=Texture'UnrealShare.s_Exp001'
     AmbientGlow=160
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: za 22-4-2006 13:27:48.000 - Creation time: za 22-4-2006 13:29:30.687 - Created with UnCodeX