I love the smell of UnrealEd crashing in the morning. – tarquin
UE3:Controller events (UDK)
From Unreal Wiki, The Unreal Engine Documentation Site
| Object >> Actor >> Controller (events) |
- Controller events in other games:
- UT2004, UT3
- Other member categories for this class:
- instance functions, properties
| This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
[edit] Events
[edit] AllowDetourTo
[edit] BeginAnimControl
Overrides: Actor.BeginAnimControl
Called when we start an AnimControl track operating on this Actor. Supplied is the set of AnimSets we are going to want to play from.
[edit] CurrentLevelUnloaded
Called when the level this controller is in is unloaded via streaming.
[edit] Destroyed
Overrides: Actor.Destroyed
[edit] EnemyNotVisible
[edit] FinishAnimControl
Overrides: Actor.FinishAnimControl
Called when we are done with the AnimControl track.
[edit] GetActorEyesViewPoint
Overrides: Actor.GetActorEyesViewPoint
returns the point of view of the actor. note that this doesn't mean the camera, but the 'eyes' of the actor. For example, for a Pawn, this would define the eye height location, and view rotation (which is different from the pawn rotation which has a zeroed pitch component). A camera first person view will typically use this view point. Most traces (weapon, AI) will be done from this view point.
Output: out_Rotation, view rotation of actor.
[edit] GetPlayerViewPoint
Returns Player's Point of View For the AI this means the Pawn's 'Eyes' ViewPoint For a Human player, this means the Camera's ViewPoint
Output: out_rotation, view rotation of player
[edit] HandlePathObstruction
called when a ReachSpec the AI wants to use is blocked by a dynamic obstruction gives the AI an opportunity to do something to get rid of it instead of trying to find another path
Parameters:
- BlockedBy - the object blocking the path
Returns:
- true if the AI did something about the obstruction and should use the path anyway, false if the path is unusable and the bot must find some other way to go
Note: MoveTarget is the actor the AI wants to move toward, CurrentPath the ReachSpec it wants to use
[edit] HearNoise
[edit] IsInCombat
Returns if controller is in combat
[edit] IsSpectating
Returns true if controller is spectating
[edit] LongFall
[edit] MayFall
[edit] MoverFinished
[edit] MoveUnreachable
Called by APawn::moveToward when the point is unreachable due to obstruction or height differences.
[edit] NotifyBump
[edit] NotifyCoverAdjusted
Called when a slot is adjusted with this controller as the current owner.
[edit] NotifyFallingHitWall
[edit] NotifyHeadVolumeChange
[edit] NotifyHitWall
[edit] NotifyJumpApex
[edit] NotifyLanded
[edit] NotifyMissedJump
[edit] NotifyPathChanged
Specified by: Interface_NavigationHandle.NotifyPathChanged
this event is called when an edge is deleted that this controller's handle is actively using
[edit] NotifyPhysicsVolumeChange
[edit] NotifyPostLanded
[edit] PlayActorFaceFXAnim
Overrides: Actor.PlayActorFaceFXAnim
Play FaceFX animations on this Actor. Returns TRUE if succeeded, if failed, a log warning will be issued.
[edit] Possess
[edit] PostBeginPlay
Overrides: Actor.PostBeginPlay
[edit] RatePickup
[edit] ReachedPreciseDestination
Called when our pawn reaches Controller.Destination after setting bPreciseDestination = TRUE
[edit] ReplicatedEvent
Overrides: Actor.ReplicatedEvent
[edit] Reset
Overrides: Actor.Reset
[edit] SeeMonster
[edit] SeePlayer
[edit] SetAnimPosition
Overrides: Actor.SetAnimPosition
Called each from while the Matinee action is running, with the desired sequence name and position we want to be at.
[edit] SetMorphWeight
Overrides: Actor.SetMorphWeight
Called each frame by Matinee to update the weight of a particular MorphNodeWeight.
[edit] SetSkelControlScale
Overrides: Actor.SetSkelControlScale
Called each frame by Matinee to update the scaling on a SkelControl.
[edit] SetupSpecialPathAbilities
[edit] StopActorFaceFXAnim
Overrides: Actor.StopActorFaceFXAnim
Stop any matinee FaceFX animations on this Actor.
