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 |
//============================================================================= // FearSpot. // Creatures will tend to back away when entering this spot // To be effective, there should also not be any paths going through the area //============================================================================= class FearSpot extends AvoidMarker placeable; var() bool bInitiallyActive; function Touch( actor Other ) { if ( bInitiallyActive && (Pawn(Other) != None) && (Pawn(Other).Controller != None) ) Pawn(Other).Controller.FearThisSpot(self); } function Trigger( actor Other, pawn EventInstigator ) { bInitiallyActive = !bInitiallyActive; } defaultproperties { CollisionRadius=200.000000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |