The three virtues of a programmer: Laziness, Impatience, and Hubris. – Larry Wall
Difference between revisions of "UE2:Actor events (UT2004)"
100GPing100 (Talk | contribs) (→ZoneChange) |
100GPing100 (Talk | contribs) (→BroadcastLocalizedMessage) |
||
(23 intermediate revisions by the same user not shown) | |||
Line 21: | Line 21: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This is called when the base of this actor changes. | ||
====BeginEvent==== | ====BeginEvent==== | ||
Line 31: | Line 32: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event is called when a | + | This event is called when a game-play starts. |
====BroadcastLocalizedMessage==== | ====BroadcastLocalizedMessage==== | ||
Line 37: | Line 38: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event broadcasts a localized message to all players. | ||
====Bump==== | ====Bump==== | ||
Line 42: | Line 44: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when another actor bumps this one and is blocked. | ||
====ClientTrigger==== | ====ClientTrigger==== | ||
Line 52: | Line 55: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event gets called after the successful destruction of an actor | + | This event gets called after the successful destruction of an actor. |
====Detach==== | ====Detach==== | ||
Line 63: | Line 66: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | Called when ''Other'' is taking this actor's space. | ||
====EncroachingOn==== | ====EncroachingOn==== | ||
Line 68: | Line 72: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when this actor is trying to take the same space of ''Other''. | ||
====EndedRotation==== | ====EndedRotation==== | ||
Line 73: | Line 78: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This is called when '''Rotation''' as reached '''DesiredRotation'''. (?) | ||
====EndEvent==== | ====EndEvent==== | ||
Line 89: | Line 95: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when the actor gets out of the world. This can happen in Subtractive levels, where the outside of the world (called zone 0) is the space that wasn't subtracted. | ||
====FinishedInterpolation==== | ====FinishedInterpolation==== | ||
Line 99: | Line 106: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when this actor becomes the owner of ''Other''. | ||
====HitWall==== | ====HitWall==== | ||
Line 152: | Line 160: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when this actor is no longer the owner of ''Other''. | ||
====PhysicsVolumeChange==== | ====PhysicsVolumeChange==== | ||
Line 157: | Line 166: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when the actor is changing to a new [[UE2:PhysicsVolume (UT2004)]]. | ||
====PostBeginPlay==== | ====PostBeginPlay==== | ||
Line 162: | Line 172: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event is called after | + | This event is called after game-play begins and before replication. |
====PostLoadSavedGame==== | ====PostLoadSavedGame==== | ||
Line 183: | Line 193: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called after the actor has been teleported into ''OutTeleporter''. | ||
====PostTouch==== | ====PostTouch==== | ||
Line 188: | Line 199: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event gets called after two actors | + | This event gets called after two actors touch each other and after physics are done. |
====PreBeginPlay==== | ====PreBeginPlay==== | ||
Line 194: | Line 205: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event is called before | + | This event is called before game-play starts. |
====PreSaveGame==== | ====PreSaveGame==== | ||
Line 205: | Line 216: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This is called before the teleporter ''InTeleporter'' teleports this actor. Return false to allow this actor to be teleported, and true to prevent it from being teleported. | ||
====RanInto==== | ====RanInto==== | ||
Line 220: | Line 232: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called when ''Tex'' has this actor set as '''NotifyActor'' and needs to be rendered. | ||
====SetInitialState==== | ====SetInitialState==== | ||
Line 225: | Line 238: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This event is called after '''PostBeginPlay''' to set the initial state of the actor. | ||
====SpecialHandling==== | ====SpecialHandling==== | ||
Line 257: | Line 271: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
− | This event | + | This event is called when another actor touches this one. |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
====TravelPostAccept==== | ====TravelPostAccept==== | ||
Line 288: | Line 297: | ||
<!-- enter event description --> | <!-- enter event description --> | ||
+ | This is called when ''Other'' stops touching this actor. | ||
====UnTrigger==== | ====UnTrigger==== |
Latest revision as of 04:49, 4 July 2012
Contents
- 1 Events
- 1.1 AnimEnd
- 1.2 Attach
- 1.3 BaseChange
- 1.4 BeginEvent
- 1.5 BeginPlay
- 1.6 BroadcastLocalizedMessage
- 1.7 Bump
- 1.8 ClientTrigger
- 1.9 Destroyed
- 1.10 Detach
- 1.11 EncroachedBy
- 1.12 EncroachingOn
- 1.13 EndedRotation
- 1.14 EndEvent
- 1.15 Falling
- 1.16 FellOutOfWorld
- 1.17 FinishedInterpolation
- 1.18 GainedChild
- 1.19 HitWall
- 1.20 KApplyForce
- 1.21 KilledBy
- 1.22 KImpact
- 1.23 KSkelConvulse
- 1.24 KUpdateState
- 1.25 KVelDropBelow
- 1.26 Landed
- 1.27 LIPSincAnimEnd
- 1.28 LostChild
- 1.29 PhysicsVolumeChange
- 1.30 PostBeginPlay
- 1.31 PostLoadSavedGame
- 1.32 PostNetBeginPlay
- 1.33 PostNetReceive
- 1.34 PostTeleport
- 1.35 PostTouch
- 1.36 PreBeginPlay
- 1.37 PreSaveGame
- 1.38 PreTeleport
- 1.39 RanInto
- 1.40 RecoverFromBadStateCode
- 1.41 RenderTexture
- 1.42 SetInitialState
- 1.43 SpecialHandling
- 1.44 TakeDamage
- 1.45 Tick
- 1.46 Timer
- 1.47 TornOff
- 1.48 Touch
- 1.49 TravelPostAccept
- 1.50 TravelPreAccept
- 1.51 Trigger
- 1.52 TriggerEvent
- 1.53 UnTouch
- 1.54 UnTrigger
- 1.55 UsedBy
- 1.56 ZoneChange
- Actor events in other games:
- RTNP, U1, UT, U2, U2XMP, UE2Runtime, UT2003, UT3, UDK
- Other member categories for this class:
- enums, instance functions, internal variables, native 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. |
Events[edit]
AnimEnd[edit]
This event gets called when the animation playing on Channel has ended.
Attach[edit]
BaseChange[edit]
This is called when the base of this actor changes.
BeginEvent[edit]
BeginPlay[edit]
This event is called when a game-play starts.
BroadcastLocalizedMessage[edit]
This event broadcasts a localized message to all players.
Bump[edit]
This event is called when another actor bumps this one and is blocked.
ClientTrigger[edit]
Destroyed[edit]
This event gets called after the successful destruction of an actor.
Detach[edit]
EncroachedBy[edit]
Called when Other is taking this actor's space.
EncroachingOn[edit]
This event is called when this actor is trying to take the same space of Other.
EndedRotation[edit]
This is called when Rotation as reached DesiredRotation. (?)
EndEvent[edit]
Falling[edit]
This event is called when the actor begins to fall (probably only with pawns).
FellOutOfWorld[edit]
This event is called when the actor gets out of the world. This can happen in Subtractive levels, where the outside of the world (called zone 0) is the space that wasn't subtracted.
FinishedInterpolation[edit]
GainedChild[edit]
This event is called when this actor becomes the owner of Other.
HitWall[edit]
This event is called when the actor hits a wall.
KApplyForce[edit]
KilledBy[edit]
KImpact[edit]
KSkelConvulse[edit]
KUpdateState[edit]
KVelDropBelow[edit]
Landed[edit]
This event is called when the actor hits the ground. (The difference between a wall and the floor is given by an angle(unknown angle value))
LIPSincAnimEnd[edit]
LostChild[edit]
This event is called when this actor is no longer the owner of Other.
PhysicsVolumeChange[edit]
This event is called when the actor is changing to a new UE2:PhysicsVolume (UT2004).
PostBeginPlay[edit]
This event is called after game-play begins and before replication.
PostLoadSavedGame[edit]
PostNetBeginPlay[edit]
PostNetReceive[edit]
PostTeleport[edit]
This event is called after the actor has been teleported into OutTeleporter.
PostTouch[edit]
This event gets called after two actors touch each other and after physics are done.
PreBeginPlay[edit]
This event is called before game-play starts.
PreSaveGame[edit]
PreTeleport[edit]
This is called before the teleporter InTeleporter teleports this actor. Return false to allow this actor to be teleported, and true to prevent it from being teleported.
RanInto[edit]
RecoverFromBadStateCode[edit]
RenderTexture[edit]
This event is called when Tex has this actor set as 'NotifyActor and needs to be rendered.
SetInitialState[edit]
This event is called after PostBeginPlay to set the initial state of the actor.
SpecialHandling[edit]
TakeDamage[edit]
Tick[edit]
This event is called every cycle of the game's main loop. DeltaTime represents how much time has passed (in seconds) since the last cycle (since the last time Tick was called).
Timer[edit]
This event gets called when SetTimer (float NewTimerRate, bool bLoop) is used. If bLoop is set to true, then this event will be called every x seconds (NewTimerRate), otherwise it only gets called once and after x seconds (NewTimerRate) have passed since the call to SetTimer. To stop the timer, one has to call SetTimer (0, false).
TornOff[edit]
Touch[edit]
This event is called when another actor touches this one.
TravelPostAccept[edit]
TravelPreAccept[edit]
Trigger[edit]
TriggerEvent[edit]
UnTouch[edit]
This is called when Other stops touching this actor.
UnTrigger[edit]
UsedBy[edit]
This event gets called when a Player or Bot presses the Use key on this actor.
ZoneChange[edit]
This event is called when the actor is changing to a new zone.