I love the smell of UnrealEd crashing in the morning. – tarquin

Difference between revisions of "UE3:Actor native functions (UT3)"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (SuggestTossVelocity: added description from source code)
(Added some descriptions, need confim on SetBase.)
Line 46: Line 46:
 
{{code|native function [[string]] '''ConsoleCommand''' ([[string]] '''Command''', optional [[bool]] '''bWriteToLog''')}}
 
{{code|native function [[string]] '''ConsoleCommand''' ([[string]] '''Command''', optional [[bool]] '''bWriteToLog''')}}
  
<!-- enter function description -->
+
Execute a console command in the context of the current level and game engine.
  
 
====ContainsPoint====
 
====ContainsPoint====
Line 56: Line 56:
 
{{code|native final function {{cl|AudioComponent}}&nbsp;'''CreateAudioComponent''' ({{cl|SoundCue}}&nbsp;'''InSoundCue''', optional&nbsp;[[bool]]&nbsp;'''bPlay''', optional&nbsp;[[bool]]&nbsp;'''bStopWhenOwnerDestroyed''', optional&nbsp;[[bool]]&nbsp;'''bUseLocation''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SourceLocation''', optional&nbsp;[[bool]]&nbsp;'''bAttachToSelf''')}}
 
{{code|native final function {{cl|AudioComponent}}&nbsp;'''CreateAudioComponent''' ({{cl|SoundCue}}&nbsp;'''InSoundCue''', optional&nbsp;[[bool]]&nbsp;'''bPlay''', optional&nbsp;[[bool]]&nbsp;'''bStopWhenOwnerDestroyed''', optional&nbsp;[[bool]]&nbsp;'''bUseLocation''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SourceLocation''', optional&nbsp;[[bool]]&nbsp;'''bAttachToSelf''')}}
  
<!-- enter function description -->
+
Create an audio component.
 +
May fail and return None if sound is disabled, there are too many sounds playing, or if the Location is out of range of all listeners.
  
 
====Destroy====
 
====Destroy====
 
{{code|native(279) final noexport function [[bool]]&nbsp;'''Destroy''' ()}}
 
{{code|native(279) final noexport function [[bool]]&nbsp;'''Destroy''' ()}}
  
<!-- enter function description -->
+
Deletes the object that this function is called on (unless bNoDelete is true), so there is no reference to it anymore. Before the object is completely destroyed, it will get it's Destroyed()-event called, giving it the chance to execute a last piece of code.
 +
 
 +
The function returns true if the actor was destroyed successfully, false if it's indestructible. Destruction happens at the end of a tick.
  
 
====DetachComponent====
 
====DetachComponent====
Line 74: Line 77:
 
{{code|native(548) noexport final function [[bool]]&nbsp;'''FastTrace''' ({{tl|Vector|Object|structs}}&nbsp;'''TraceEnd''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''TraceStart''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''BoxExtent''', optional&nbsp;[[bool]]&nbsp;'''bTraceBullet''')}}
 
{{code|native(548) noexport final function [[bool]]&nbsp;'''FastTrace''' ({{tl|Vector|Object|structs}}&nbsp;'''TraceEnd''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''TraceStart''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''BoxExtent''', optional&nbsp;[[bool]]&nbsp;'''bTraceBullet''')}}
  
<!-- enter function description -->
+
Returns true if a trace from the TraceStart to the TraceEnd (with an optional extent) did not hit any world geometry.
  
 
====FindBase====
 
====FindBase====
Line 84: Line 87:
 
{{code|native final function [[bool]]&nbsp;'''FindSpot''' ({{tl|Vector|Object|structs}}&nbsp;'''BoxExtent''', out&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SpotLocation''')}}
 
{{code|native final function [[bool]]&nbsp;'''FindSpot''' ({{tl|Vector|Object|structs}}&nbsp;'''BoxExtent''', out&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SpotLocation''')}}
  
<!-- enter function description -->
+
Tries to position a box to avoid overlapping world geometry.
 +
If no overlap, the box is placed at SpotLocation, otherwise the position is adjusted.
 +
Return true if successful in finding a valid non-world geometry overlapping location.
 +
 
 +
'''Parameters:'''
 +
* ''Parameter'' BoxExtent is the collision extent (X and Y=CollisionRadius, Z=CollisionHeight)
 +
* ''Parameter'' SpotLocation is the position where the box should be placed.  Contains the adjusted location if it is adjusted.
  
 
====ForceUpdateComponents====
 
====ForceUpdateComponents====
Line 130: Line 139:
 
{{code|simulated native function [[byte]]&nbsp;'''GetTeamNum''' ()}}
 
{{code|simulated native function [[byte]]&nbsp;'''GetTeamNum''' ()}}
  
<!-- enter function description -->
+
Returns the TeamNumber of the actor it is called on. In UT does that mean: 0 is red, 1 is blue, 255 is neutral/none.
  
 
====GetTerminalVelocity====
 
====GetTerminalVelocity====
Line 163: Line 172:
 
{{code|native(547) final function [[string]]&nbsp;'''GetURLMap''' ()}}
 
{{code|native(547) final function [[string]]&nbsp;'''GetURLMap''' ()}}
  
<!-- enter function description -->
+
Disk access. Find files.
  
 
====GetUTFlag====
 
====GetUTFlag====
Line 214: Line 223:
 
{{code|native(512) final function '''MakeNoise''' ([[float]]&nbsp;'''Loudness''', optional&nbsp;[[name]]&nbsp;'''NoiseType''')}}
 
{{code|native(512) final function '''MakeNoise''' ([[float]]&nbsp;'''Loudness''', optional&nbsp;[[name]]&nbsp;'''NoiseType''')}}
  
<!-- enter function description -->
+
This does not play a sound that the player could hear but instead it does notify the AI, causing a Controller to get it's event HearNoise(float Loudness, Actor NoiseMaker, optional Name NoiseType) called. Senders of MakeNoise should have an instigator if they are not pawns.
  
 
====Move====
 
====Move====
 
{{code|native(266) final function [[bool]]&nbsp;'''Move''' ({{tl|Vector|Object|structs}}&nbsp;'''Delta''')}}
 
{{code|native(266) final function [[bool]]&nbsp;'''Move''' ({{tl|Vector|Object|structs}}&nbsp;'''Delta''')}}
  
<!-- enter function description -->
+
Move tries to move the actor by a movement vector. If the actor has no attachments and bCollideActors and bCollideWorld are both false, this function just does a Location+=Delta, which is very-very fast. Move assumes that the actor's Location is valid and that the actor fits in its current Location. If bCollideWorld is true, Move checks collision with the world. Then, for every actor-actor collision pair, this function performs the following checks:
 +
 
 +
* If both actors have bCollideActors and bBlocksActors, performs collision rebound, and dispatches Touch messages to touched-and-rebounded actors.
 +
* If both actors have bCollideActors but either one doesn't have bBlocksActors, checks collision with other actors (but lets this actor interpenetrate), and dispatches Touch and UnTouch messages.
 +
 
 +
This means that if the actor is in front of a trigger (not touching the trigger), and Move is called such the actor's new location will be on the other side of the trigger (not touching the trigger), the trigger will still be called. This is not the case with SetLocation.
 +
 
 +
This function returns true if some movement occurred and false if no movement occurred. Move also updates actor's PhysicsVolume.
  
 
====MoveSmooth====
 
====MoveSmooth====
 
{{code|native(3969) noexport final function [[bool]]&nbsp;'''MoveSmooth''' ({{tl|Vector|Object|structs}}&nbsp;'''Delta''')}}
 
{{code|native(3969) noexport final function [[bool]]&nbsp;'''MoveSmooth''' ({{tl|Vector|Object|structs}}&nbsp;'''Delta''')}}
  
<!-- enter function description -->
+
Very similar to the Move() function but when you hit something while moving, this function keeps the actor moving as best it can by sliding the actor along a wall, or going up steps, or however it might be possible for the actor to move.
  
 
====MovingWhichWay====
 
====MovingWhichWay====
Line 240: Line 256:
 
{{code|native(532) final function [[bool]]&nbsp;'''PlayerCanSeeMe''' ()}}
 
{{code|native(532) final function [[bool]]&nbsp;'''PlayerCanSeeMe''' ()}}
  
<!-- enter function description -->
+
Returns true if any player (server) or the local player (standalone
 +
or client) has a line of sight to actor's location
  
 
====PlaySound====
 
====PlaySound====
 
{{code|native noexport final function '''PlaySound''' ({{cl|SoundCue}}&nbsp;'''InSoundCue''', optional&nbsp;[[bool]]&nbsp;'''bNotReplicated''', optional&nbsp;[[bool]]&nbsp;'''bNoRepToOwner''', optional&nbsp;[[bool]]&nbsp;'''bStopWhenOwnerDestroyed''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SoundLocation''', optional&nbsp;[[bool]]&nbsp;'''bNoRepToRelevant''')}}
 
{{code|native noexport final function '''PlaySound''' ({{cl|SoundCue}}&nbsp;'''InSoundCue''', optional&nbsp;[[bool]]&nbsp;'''bNotReplicated''', optional&nbsp;[[bool]]&nbsp;'''bNoRepToOwner''', optional&nbsp;[[bool]]&nbsp;'''bStopWhenOwnerDestroyed''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''SoundLocation''', optional&nbsp;[[bool]]&nbsp;'''bNoRepToRelevant''')}}
  
<!-- enter function description -->
+
Play a sound.  Creates an AudioComponent only if the sound is determined to be audible, and replicates the sound to clients based on optional flags
  
 
====PointCheckComponent====
 
====PointCheckComponent====
Line 256: Line 273:
 
{{code|native(298) noexport final function '''SetBase''' ({{cl|Actor}}&nbsp;'''NewBase''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''NewFloor''', optional&nbsp;{{cl|SkeletalMeshComponent}}&nbsp;'''SkelComp''', optional&nbsp;[[name]]&nbsp;'''AttachName''')}}
 
{{code|native(298) noexport final function '''SetBase''' ({{cl|Actor}}&nbsp;'''NewBase''', optional&nbsp;{{tl|Vector|Object|structs}}&nbsp;'''NewFloor''', optional&nbsp;{{cl|SkeletalMeshComponent}}&nbsp;'''SkelComp''', optional&nbsp;[[name]]&nbsp;'''AttachName''')}}
  
<!-- enter function description -->
+
The actor this function is called on will get it's based set to the first parameter of this function. The actor will then copy any relative movement of it's base, i.e. standing on a moving actor will cause your pawn to set it's base to that actor and move you with it, and can be found by the [[Legacy:Iterator#Actor|BasedActors]] iterator.
 +
 
 +
When the base of an actor gets destroyed, all basing actors get destroyed as well. {{confirm}}
  
 
====SetCollision====
 
====SetCollision====
 
{{code|native(262) final noexport function '''SetCollision''' (optional&nbsp;[[bool]]&nbsp;'''bNewColActors''', optional&nbsp;[[bool]]&nbsp;'''bNewBlockActors''', optional&nbsp;[[bool]]&nbsp;'''bNewIgnoreEncroachers''')}}
 
{{code|native(262) final noexport function '''SetCollision''' (optional&nbsp;[[bool]]&nbsp;'''bNewColActors''', optional&nbsp;[[bool]]&nbsp;'''bNewBlockActors''', optional&nbsp;[[bool]]&nbsp;'''bNewIgnoreEncroachers''')}}
  
<!-- enter function description -->
+
Allows to change the actor's collision behaviour to the new parameters.
 +
 
 +
'''Parameters:'''
 +
* ''bNewColActors'' - The value to assign to bCollideActors. If this is false, no collision will take place at all.
 +
* ''bNewBlockActors'' - The value to assign to bBlockActors. If this is true, other actors can't move into this actor's collision geometry.
 +
* ''bNewIgnoreEncroachers'' - The value to assign to bIgnoreEncroachers.
  
 
====SetCollisionSize====
 
====SetCollisionSize====
 
{{code|native(283) final function '''SetCollisionSize''' ([[float]]&nbsp;'''NewRadius''', [[float]]&nbsp;'''NewHeight''')}}
 
{{code|native(283) final function '''SetCollisionSize''' ([[float]]&nbsp;'''NewRadius''', [[float]]&nbsp;'''NewHeight''')}}
  
<!-- enter function description -->
+
Allows to change the actor's collision cylinder size.
 +
 
 +
'''Parameters:'''
 +
* ''bNewRadius'' - The value to assign to CollisionRadius.
 +
* ''bNewHeight'' - The value to assign to CollisionHeight.
  
 
====SetDrawScale====
 
====SetDrawScale====
 
{{code|native final function '''SetDrawScale''' ([[float]]&nbsp;'''NewScale''')}}
 
{{code|native final function '''SetDrawScale''' ([[float]]&nbsp;'''NewScale''')}}
  
<!-- enter function description -->
+
Allows to change the uniform DrawScale multiplier of the actor.
  
 
====SetDrawScale3D====
 
====SetDrawScale3D====
 
{{code|native final function '''SetDrawScale3D''' ({{tl|Vector|Object|structs}}&nbsp;'''NewScale3D''')}}
 
{{code|native final function '''SetDrawScale3D''' ({{tl|Vector|Object|structs}}&nbsp;'''NewScale3D''')}}
  
<!-- enter function description -->
+
Allows to change the DrawScale multiplier for each relative axis of the actor individually.
  
 
====SetForcedInitialReplicatedProperty====
 
====SetForcedInitialReplicatedProperty====
Line 295: Line 323:
 
{{code|native final function noexport '''SetHardAttach''' (optional&nbsp;[[bool]]&nbsp;'''bNewHardAttach''')}}
 
{{code|native final function noexport '''SetHardAttach''' (optional&nbsp;[[bool]]&nbsp;'''bNewHardAttach''')}}
  
<!-- enter function description -->
+
Sets the hard attach flag by first handling the case of already being based upon another actor.
 +
 
 +
'''Parameters:'''
 +
* ''bNewHardAttach'' - The value to assign to bHardAttach.
  
 
====SetHidden====
 
====SetHidden====
Line 316: Line 347:
 
{{code|native(267) final function [[bool]]&nbsp;'''SetLocation''' ({{tl|Vector|Object|structs}}&nbsp;'''NewLocation''')}}
 
{{code|native(267) final function [[bool]]&nbsp;'''SetLocation''' ({{tl|Vector|Object|structs}}&nbsp;'''NewLocation''')}}
  
<!-- enter function description -->
+
Will move the actor directly to the new location, i.e. teleporting him directly to that point without smooth moving.
  
 
====SetNetUpdateTime====
 
====SetNetUpdateTime====
Line 334: Line 365:
 
{{code|native(272) final function '''SetOwner''' ({{cl|Actor}}&nbsp;'''NewOwner''')}}
 
{{code|native(272) final function '''SetOwner''' ({{cl|Actor}}&nbsp;'''NewOwner''')}}
  
<!-- enter function description -->
+
Sets this actor's Owner to the new one. This is also done when an Owner is specified as parameter during the actor's spawning.
 +
 
 +
The new Owner's GainedChild()-event is called upon this.
  
 
====SetPhysics====
 
====SetPhysics====
 
{{code|native(3970) noexport final function '''SetPhysics''' ({{tl|EPhysics||Actor}}&nbsp;'''newPhysics''')}}
 
{{code|native(3970) noexport final function '''SetPhysics''' ({{tl|EPhysics||Actor}}&nbsp;'''newPhysics''')}}
  
<!-- enter function description -->
+
'''Parameters:'''
 +
* ''newPhysics'' - the new value to assign to this actor's Physics.
  
 
====SetRelativeLocation====
 
====SetRelativeLocation====
 
{{code|native final function [[bool]]&nbsp;'''SetRelativeLocation''' ({{tl|Vector|Object|structs}}&nbsp;'''NewLocation''')}}
 
{{code|native final function [[bool]]&nbsp;'''SetRelativeLocation''' ({{tl|Vector|Object|structs}}&nbsp;'''NewLocation''')}}
  
<!-- enter function description -->
+
Moves the actor relative to it's current location by this vector.
  
 
====SetRelativeRotation====
 
====SetRelativeRotation====
 
{{code|native final function [[bool]]&nbsp;'''SetRelativeRotation''' ({{tl|Rotator|Object|structs}}&nbsp;'''NewRotation''')}}
 
{{code|native final function [[bool]]&nbsp;'''SetRelativeRotation''' ({{tl|Rotator|Object|structs}}&nbsp;'''NewRotation''')}}
  
<!-- enter function description -->
+
Rotates the actor relative to it's current rotation by this rotator.
  
 
====SetRotation====
 
====SetRotation====
 
{{code|native(299) final function [[bool]]&nbsp;'''SetRotation''' ({{tl|Rotator|Object|structs}}&nbsp;'''NewRotation''')}}
 
{{code|native(299) final function [[bool]]&nbsp;'''SetRotation''' ({{tl|Rotator|Object|structs}}&nbsp;'''NewRotation''')}}
  
<!-- enter function description -->
+
Rotates the actor directly to the new rotation, without taking the current rotation into account. This will happen immediately, without any interpolation.
  
 
====SetTickGroup====
 
====SetTickGroup====

Revision as of 19:02, 18 September 2010

UT3 Object >> Actor (native functions)
Actor native functions in other games:
RTNP, U1, UT, U2, U2XMP, UE2Runtime, UT2003, UT2004, UDK
Other member categories for this class:
events, instance functions, internal variables, structs

Native functions

AttachComponent

native final function AttachComponent (ActorComponent NewComponent)

Adds a component to the actor's components array, attaching it to the actor.

Parameters:

  • NewComponent - The component to attach.

AutonomousPhysics

native(3971) final function AutonomousPhysics (float DeltaSeconds)


ChartData

native final function ChartData (string DataName, float DataValue)

Draw some value over time onto the StatChart. Toggle on and off with

ClampRotation

simulated final native function bool ClampRotation (out Object.Rotator out_Rot, Object.Rotator rBase, Object.Rotator rUpperLimits, Object.Rotator rLowerLimits)

Clamps out_Rot between the upper and lower limits offset from the base

ClearTimer

native final function ClearTimer (optional name inTimerFunc, optional Object inObj)

Clears a previously set timer, identical to calling SetTimer() with a <= 0.f rate.

Parameters:

  • inTimerFunc - the name of the timer to remove or the default one if not specified

Clock

native final function Clock (out float time)


ConsoleCommand

native function string ConsoleCommand (string Command, optional bool bWriteToLog)

Execute a console command in the context of the current level and game engine.

ContainsPoint

native final function bool ContainsPoint (Object.Vector Spot)


CreateAudioComponent

native final function AudioComponent CreateAudioComponent (SoundCue InSoundCue, optional bool bPlay, optional bool bStopWhenOwnerDestroyed, optional bool bUseLocation, optional Object.Vector SourceLocation, optional bool bAttachToSelf)

Create an audio component. May fail and return None if sound is disabled, there are too many sounds playing, or if the Location is out of range of all listeners.

Destroy

native(279) final noexport function bool Destroy ()

Deletes the object that this function is called on (unless bNoDelete is true), so there is no reference to it anymore. Before the object is completely destroyed, it will get it's Destroyed()-event called, giving it the chance to execute a last piece of code.

The function returns true if the actor was destroyed successfully, false if it's indestructible. Destruction happens at the end of a tick.

DetachComponent

native final function DetachComponent (ActorComponent ExComponent)

Removes a component from the actor's components array, detaching it from the actor.

Parameters:

  • ExComponent - The component to detach.

FastTrace

native(548) noexport final function bool FastTrace (Object.Vector TraceEnd, optional Object.Vector TraceStart, optional Object.Vector BoxExtent, optional bool bTraceBullet)

Returns true if a trace from the TraceStart to the TraceEnd (with an optional extent) did not hit any world geometry.

FindBase

native function FindBase ()

Attempts to find a valid base for this actor

FindSpot

native final function bool FindSpot (Object.Vector BoxExtent, out Object.Vector SpotLocation)

Tries to position a box to avoid overlapping world geometry. If no overlap, the box is placed at SpotLocation, otherwise the position is adjusted. Return true if successful in finding a valid non-world geometry overlapping location.

Parameters:

  • Parameter BoxExtent is the collision extent (X and Y=CollisionRadius, Z=CollisionHeight)
  • Parameter SpotLocation is the position where the box should be placed. Contains the adjusted location if it is adjusted.

ForceUpdateComponents

native function ForceUpdateComponents (optional bool bCollisionUpdate, optional bool bTransformOnly)


GetBaseMost

native function Actor GetBaseMost ()

Walks up the Base chain from this Actor and returns the Actor at the top (the eventual Base). this->Base is NULL, returns this.

GetBoundingCylinder

native function GetBoundingCylinder (out float CollisionRadius, out float CollisionHeight) const


GetComponentsBoundingBox

native final function GetComponentsBoundingBox (out Object.Box ActorBox) const


GetDestination

native final virtual function Object.Vector GetDestination (Controller C)

returns the position the AI should move toward to reach this actor accounts for AI using path lanes, cutting corners, and other special adjustments

GetGravityZ

native function float GetGravityZ ()

Get gravity currently affecting this actor

GetTargetLocation

simulated native function Object.Vector GetTargetLocation (optional Actor RequestedBy, optional bool bRequestAlternateLoc) const

Parameters:

  • RequestedBy - the Actor requesting the target location
  • bRequestAlternateLoc - optional) - return a secondary target location if there are multiple

Returns:

the optimal location to fire weapons at this actor

GetTeamNum

simulated native function byte GetTeamNum ()

Returns the TeamNumber of the actor it is called on. In UT does that mean: 0 is red, 1 is blue, 255 is neutral/none.

GetTerminalVelocity

native function float GetTerminalVelocity ()

returns terminal velocity (max speed while falling) for this actor. Unless overridden, it returns the TerminalVelocity of the PhysicsVolume in which this actor is located.

GetTimerCount

native final function float GetTimerCount (optional name inTimerFunc, optional Object inObj)

Gets the current count for the specified timer, defaults to 'Timer' if no function is specified. Returns -1.f if the timer is not currently active.

Parameters:

  • inTimerFunc - the name of the timer to remove or the default one if not specified

GetTimerRate

native final function float GetTimerRate (optional name TimerFuncName, optional Object inObj)

Gets the current rate for the specified timer.

Parameters:

  • TimerFuncName - the name of the function to check for a timer for; 'Timer' is the default

Returns:

the rate for the given timer, or -1.f if that timer is not active

Note: GetTimerRate('SomeTimer') - GetTimerCount('SomeTimer') is the time remaining before 'SomeTimer' is called

GetURLMap

native(547) final function string GetURLMap ()

Disk access. Find files.

GetUTFlag

native final function Actor GetUTFlag (bool bIsRed)


IsBasedOn

native noexport final function bool IsBasedOn (Actor TestActor)

iterates up the Base chain to see whether or not this Actor is based on the given Actor

Parameters:

  • TestActor - the Actor to test for

Returns:

whether or not this Actor is based on TestActor

IsOverlapping

native noexport final function bool IsOverlapping (Actor A)


IsOwnedBy

native noexport final function bool IsOwnedBy (Actor TestActor)

iterates up the Owner chain to see whether or not this Actor is owned by the given Actor

Parameters:

  • TestActor - the Actor to test for

Returns:

whether or not this Actor is owned by TestActor

IsPlayerOwned

native simulated function bool IsPlayerOwned ()

Searches the owner chain looking for a player.

IsTimerActive

native final function bool IsTimerActive (optional name inTimerFunc, optional Object inObj)

Returns true if the specified timer is active, defaults to 'Timer' if no function is specified.

Parameters:

  • inTimerFunc - the name of the timer to remove or the default one if not specified

MakeNoise

native(512) final function MakeNoise (float Loudness, optional name NoiseType)

This does not play a sound that the player could hear but instead it does notify the AI, causing a Controller to get it's event HearNoise(float Loudness, Actor NoiseMaker, optional Name NoiseType) called. Senders of MakeNoise should have an instigator if they are not pawns.

Move

native(266) final function bool Move (Object.Vector Delta)

Move tries to move the actor by a movement vector. If the actor has no attachments and bCollideActors and bCollideWorld are both false, this function just does a Location+=Delta, which is very-very fast. Move assumes that the actor's Location is valid and that the actor fits in its current Location. If bCollideWorld is true, Move checks collision with the world. Then, for every actor-actor collision pair, this function performs the following checks:

  • If both actors have bCollideActors and bBlocksActors, performs collision rebound, and dispatches Touch messages to touched-and-rebounded actors.
  • If both actors have bCollideActors but either one doesn't have bBlocksActors, checks collision with other actors (but lets this actor interpenetrate), and dispatches Touch and UnTouch messages.

This means that if the actor is in front of a trigger (not touching the trigger), and Move is called such the actor's new location will be on the other side of the trigger (not touching the trigger), the trigger will still be called. This is not the case with SetLocation.

This function returns true if some movement occurred and false if no movement occurred. Move also updates actor's PhysicsVolume.

MoveSmooth

native(3969) noexport final function bool MoveSmooth (Object.Vector Delta)

Very similar to the Move() function but when you hit something while moving, this function keeps the actor moving as best it can by sliding the actor along a wall, or going up steps, or however it might be possible for the actor to move.

MovingWhichWay

native function EMoveDir MovingWhichWay (out float Amount)

This will return the direction in LocalSpace that that actor is moving. This is useful for firing off effects based on which way the actor is moving. *

NativePostRenderFor

simulated native function NativePostRenderFor (PlayerController PC, Canvas Canvas, Object.Vector CameraPosition, Object.Vector CameraDir)

Hook to allow actors to render HUD overlays for themselves. Assumes that appropriate font has already been set

PlayerCanSeeMe

native(532) final function bool PlayerCanSeeMe ()

Returns true if any player (server) or the local player (standalone or client) has a line of sight to actor's location

PlaySound

native noexport final function PlaySound (SoundCue InSoundCue, optional bool bNotReplicated, optional bool bNoRepToOwner, optional bool bStopWhenOwnerDestroyed, optional Object.Vector SoundLocation, optional bool bNoRepToRelevant)

Play a sound. Creates an AudioComponent only if the sound is determined to be audible, and replicates the sound to clients based on optional flags

PointCheckComponent

native noexport final function bool PointCheckComponent (PrimitiveComponent InComponent, Object.Vector PointLocation, Object.Vector PointExtent)

Run a point check against just this PrimitiveComponent. Return TRUE if we hit.

NOTE: the actual Actor we call this on is irrelevant!

SetBase

native(298) noexport final function SetBase (Actor NewBase, optional Object.Vector NewFloor, optional SkeletalMeshComponent SkelComp, optional name AttachName)

The actor this function is called on will get it's based set to the first parameter of this function. The actor will then copy any relative movement of it's base, i.e. standing on a moving actor will cause your pawn to set it's base to that actor and move you with it, and can be found by the BasedActors iterator.

When the base of an actor gets destroyed, all basing actors get destroyed as well. [confirm]

SetCollision

native(262) final noexport function SetCollision (optional bool bNewColActors, optional bool bNewBlockActors, optional bool bNewIgnoreEncroachers)

Allows to change the actor's collision behaviour to the new parameters.

Parameters:

  • bNewColActors - The value to assign to bCollideActors. If this is false, no collision will take place at all.
  • bNewBlockActors - The value to assign to bBlockActors. If this is true, other actors can't move into this actor's collision geometry.
  • bNewIgnoreEncroachers - The value to assign to bIgnoreEncroachers.

SetCollisionSize

native(283) final function SetCollisionSize (float NewRadius, float NewHeight)

Allows to change the actor's collision cylinder size.

Parameters:

  • bNewRadius - The value to assign to CollisionRadius.
  • bNewHeight - The value to assign to CollisionHeight.

SetDrawScale

native final function SetDrawScale (float NewScale)

Allows to change the uniform DrawScale multiplier of the actor.

SetDrawScale3D

native final function SetDrawScale3D (Object.Vector NewScale3D)

Allows to change the DrawScale multiplier for each relative axis of the actor individually.

SetForcedInitialReplicatedProperty

native final function SetForcedInitialReplicatedProperty (Property PropToReplicate, bool bAdd)

adds/removes a property from a list of properties that will always be replicated when this Actor is bNetInitial, even if the code thinks the client has the same value the server already does This is a workaround to the problem where an LD places an Actor in the level, changes a replicated variable away from the defaults, then at runtime the variable is changed back to the default but it doesn't replicate because initial replication is based on class defaults Only has an effect when called on bStatic or bNoDelete Actors Only properties already in the owning class's replication block may be specified

Parameters:

  • PropToReplicate - the property to add or remove to the list
  • bAdd - true to add the property, false to remove the property

SetHardAttach

native final function noexport SetHardAttach (optional bool bNewHardAttach)

Sets the hard attach flag by first handling the case of already being based upon another actor.

Parameters:

  • bNewHardAttach - The value to assign to bHardAttach.

SetHidden

native final function SetHidden (bool bNewHidden)

Changes the value of bHidden.

Parameters:

  • bNewHidden - The value to assign to bHidden.

SetHUDLocation

simulated native function SetHUDLocation (Object.Vector NewHUDLocation)

function used to update where icon for this actor should be rendered on the HUD

Parameters:

  • NewHUDLocation - is a vector whose X and Y components are the X and Y components of this actor's icon's 2D position on the HUD

SetLocation

native(267) final function bool SetLocation (Object.Vector NewLocation)

Will move the actor directly to the new location, i.e. teleporting him directly to that point without smooth moving.

SetNetUpdateTime

final native function SetNetUpdateTime (float NewUpdateTime)

Updates NetUpdateTime to the new value for future net relevancy checks

SetOnlyOwnerSee

native final function SetOnlyOwnerSee (bool bNewOnlyOwnerSee)

changes the value of bOnlyOwnerSee

Parameters:

  • bNewOnlyOwnerSee - the new value to assign to bOnlyOwnerSee

SetOwner

native(272) final function SetOwner (Actor NewOwner)

Sets this actor's Owner to the new one. This is also done when an Owner is specified as parameter during the actor's spawning.

The new Owner's GainedChild()-event is called upon this.

SetPhysics

native(3970) noexport final function SetPhysics (EPhysics newPhysics)

Parameters:

  • newPhysics - the new value to assign to this actor's Physics.

SetRelativeLocation

native final function bool SetRelativeLocation (Object.Vector NewLocation)

Moves the actor relative to it's current location by this vector.

SetRelativeRotation

native final function bool SetRelativeRotation (Object.Rotator NewRotation)

Rotates the actor relative to it's current rotation by this rotator.

SetRotation

native(299) final function bool SetRotation (Object.Rotator NewRotation)

Rotates the actor directly to the new rotation, without taking the current rotation into account. This will happen immediately, without any interpolation.

SetTickGroup

native final function SetTickGroup (Object.ETickingGroup NewTickGroup)

Changes the ticking group for this actor

SetTimer

native(280) final function SetTimer (float inRate, optional bool inbLoop, optional name inTimerFunc, optional Object inObj)

Sets a timer to call the given function at a set interval. Defaults to calling the 'Timer' event if no function is specified. If inRate is set to 0.f it will effectively disable the previous timer.

NOTE: Functions with parameters are not supported!

Parameters:

  • inRate - the amount of time to pass between firing
  • inbLoop - whether to keep firing or only fire once
  • inTimerFunc - the name of the function to call when the timer fires

SetZone

native final noexport function SetZone (bool bForceRefresh)

updates the zone/PhysicsVolume of this Actor

Parameters:

  • bForceRefresh - forces the code to do a full collision check instead of exiting early if the current info is valid

Spawn

native noexport final function coerce Actor Spawn (class<ActorSpawnClass, optional Actor SpawnOwner, optional name SpawnTag, optional Object.Vector SpawnLocation, optional Object.Rotator SpawnRotation, optional Actor ActorTemplate, optional bool bNoCollisionFail)

Spawn an actor. Returns an actor of the specified class, not of class Actor (this is hardcoded in the compiler). Returns None if the actor could not be spawned (if that happens, there will be a log warning indicating why) Defaults to spawning at the spawner's location.

Note: ActorTemplate is sent for replicated actors and therefore its properties will also be applied at initial creation on the client. However, because of this, ActorTemplate must be a static resource (an actor archetype, default object, or a bStatic/bNoDelete actor in a level package) or the spawned Actor cannot be replicated

SuggestTossVelocity

native noexport final function bool SuggestTossVelocity (out Object.Vector TossVelocity, Object.Vector Destination, Object.Vector Start, float TossSpeed, optional float BaseTossZ, optional float DesiredZPct, optional Object.Vector CollisionSize, optional float TerminalVelocity)

Returns true if a successful toss from Start to Destination was found, and returns the suggested toss velocity in TossVelocity.

Parameters:

  • TossSpeed - the magnitude of the toss
  • BaseTossZ - an additional Z direction force added to the toss. (defaults to 0)
  • DesiredZPct - the requested pct of the toss in the z direction (0=toss horizontally, 0.5 = toss at 45 degrees, defaults to 0.05). This is the starting point for finding a toss. The purpose of this is to bias the test in cases where there is more than one solution. (Which is usually the case if the target is well within range.)
  • CollisionSize - the size of bunding box of the tossed actor (defaults to (0,0,0)

Trace

native(277) noexport final function Actor Trace (out Object.Vector HitLocation, out Object.Vector HitNormal, Object.Vector TraceEnd, optional Object.Vector TraceStart, optional bool bTraceActors, optional Object.Vector Extent, optional out TraceHitInfo HitInfo, optional int ExtraTraceFlags)

Trace a line and see what it collides with first. Takes this actor's collision properties into account. Returns first hit actor, Level if hit level, or None if hit nothing.

TraceComponent

native noexport final function bool TraceComponent (out Object.Vector HitLocation, out Object.Vector HitNormal, PrimitiveComponent InComponent, Object.Vector TraceEnd, optional Object.Vector TraceStart, optional Object.Vector Extent, optional out TraceHitInfo HitInfo)

Run a line check against just this PrimitiveComponent. Return TRUE if we hit.

NOTE: the actual Actor we call this on is irrelevant!

UnClock

native final function UnClock (out float time)