I don't need to test my programs. I have an error-correcting modem.

UE3:SeqEvent_Touch (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 09:11, 17 May 2008 by Wormbo (Talk | contribs) (Auto-generated page)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
UT3 Object >> SequenceObject >> SequenceOp >> SequenceEvent >> SeqEvent_Touch
Package: 
Engine
Direct subclass:
UTSeqEvent_TouchStatus
This class in other games:
UDK

Activated when an actor touches another actor. Will be called on both actors, first on the actor that was originally touched, then on the actor that did the touching

Originator: the actor that owns this event Instigator: the actor that was touched Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.

Properties

Property group 'SeqEvent_Touch'

bAllowDeadPawns

Type: bool

whether dead (Health < 0) pawns can be considered touching

bForceOverlapping

Type: bool

Force the player to be overlapping at the time of activation?

Default value: True

bUseInstigator

Type: bool

Use Instigator, not actual Actor. For projectiles, it returns the instigator.

Property group 'TouchTypes'

ClassProximityTypes

Type: array<class<Actor> >

List of class types that are considered valid for this event

Default value: Class'Engine.Pawn'

IgnoredClassProximityTypes

Type: array<class<Actor> >

List of class types that are considered valid for this event

Internal variables

TouchedList

Type: array<Actor>

List of all actors that have activated this touch event, so that untouch may be properly fired.

Default values

Property Value
ObjCategory "Physics"
ObjName "Touch"
OutputLinks[0]
Member Value
LinkDesc "Touched"
OutputLinks[1]
Member Value
LinkDesc "UnTouched"

Functions

Native functions

CheckTouchActivate

native noexport final function bool CheckTouchActivate (Actor InOriginator, Actor InInstigator, optional bool bTest)


CheckUnTouchActivate

native noexport final function bool CheckUnTouchActivate (Actor InOriginator, Actor InInstigator, optional bool bTest)


Events

Toggled

event Toggled ()

Overrides: SequenceEvent.Toggled

Called once this event is toggled via SeqAct_Toggle.

Other instance functions

NotifyTouchingPawnDied

function NotifyTouchingPawnDied (Pawn P)

notification that the given Pawn has died while touching an Actor with this event connected to it

Parameters:

  • P - the pawn that died