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 |
/** * Event which is activated when some pawn has a line of sight to an LOS trigger. * Originator: the trigger that owns this event * Instigator: the Pawn of the Player that saw the LOS trigger which owns this event * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class SeqEvent_LOS extends SequenceEvent; /** Distance from the screen center before activating this event */ var() float ScreenCenterDistance; /** Distance from the trigger before activating this event */ var() float TriggerDistance; /** Force a clear line of sight to the trigger? */ var() bool bCheckForObstructions; defaultproperties { ScreenCenterDistance=50.000000 TriggerDistance=2048.000000 bCheckForObstructions=True ObjName="Line Of Sight" ObjCategory="Pawn" Name="Default__SeqEvent_LOS" ObjectArchetype=SequenceEvent'Engine.Default__SequenceEvent' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |