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 |
//============================================================================= // $Author: Mbaldwin $ // $Date: 10/15/02 1:33a $ // $Revision: 1 $ //============================================================================= class LGalt_GeometryColliderFertileScripted extends LGalt_GeometryColliderFertile; //----------------------------------------------------------------------------- // This class is used for the pod attack of the heavy araknid. // She spews out pods which grow in size and hatch light araknids, // some of which are scripted. //----------------------------------------------------------------------------- var string CommandFile; var float PercentScripted; //----------------------------------------------------------------------------- function Actor SpawnBabyPod( ParticleHandle P, Actor.CheckResult Hit ) { local Actor A; A = Super.SpawnBabyPod( P, Hit ); if( FRand() < PercentScripted ) { if( A.CanSetProperty( "CommandFile" ) ) A.SetPropertyText( "CommandFile", CommandFile ); } return A; } //----------------------------------------------------------------------------- defaultproperties { CommandFile="bossfight_grow" PercentScripted=0.500000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |