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

UnrealShare.FearSpot


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
//=============================================================================
// 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 Triggers;

var() bool bInitiallyActive;

function Touch( actor Other )
{
    if ( bInitiallyActive && Other.bIsPawn )
        Pawn(Other).FearThisSpot(self);
}

function Trigger( actor Other, pawn EventInstigator )
{
    bInitiallyActive = !bInitiallyActive;
}

defaultproperties
{
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: za 22-4-2006 13:00:12.000 - Creation time: za 22-4-2006 13:01:31.843 - Created with UnCodeX