<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.frictionalgames.com/page?action=history&amp;feed=atom&amp;title=Hpl3%3AGame%3Ascripting%3Afunction_reference%3Ahelper_areas</id>
	<title>Hpl3:Game:scripting:function reference:helper areas - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.frictionalgames.com/page?action=history&amp;feed=atom&amp;title=Hpl3%3AGame%3Ascripting%3Afunction_reference%3Ahelper_areas"/>
	<link rel="alternate" type="text/html" href="https://wiki.frictionalgames.com/page?title=Hpl3:Game:scripting:function_reference:helper_areas&amp;action=history"/>
	<updated>2026-05-15T09:40:50Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://wiki.frictionalgames.com/page?title=Hpl3:Game:scripting:function_reference:helper_areas&amp;diff=595&amp;oldid=prev</id>
		<title>Maintenance script: Upload from wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.frictionalgames.com/page?title=Hpl3:Game:scripting:function_reference:helper_areas&amp;diff=595&amp;oldid=prev"/>
		<updated>2020-07-09T13:46:44Z</updated>

		<summary type="html">&lt;p&gt;Upload from wiki&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== helper_areas.hps ==&lt;br /&gt;
Helper functions to handle area objects&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===== Area_MoveLinearTo =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void Area_MoveLinearTo(const tString &amp;amp;in asName,&lt;br /&gt;
                       const tString &amp;amp;in asTargetEntity,&lt;br /&gt;
                       float afAcceleration,&lt;br /&gt;
                       float afMaxSpeed,&lt;br /&gt;
                       float afSlowDownDist=0.0f,&lt;br /&gt;
                       bool abResetSpeed=true,&lt;br /&gt;
                       const tString &amp;amp;in asCallback=&amp;quot;&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Moves the specified area to the current position of the target entity. !Does not work on Liquid Areas, instead use LiquidArea_MoveLinearTo!&lt;br /&gt;
* '''asName''': name of the area to move, wildcard(s) * are supported.&lt;br /&gt;
* '''asTargetEntity''': name of the entity to move the area to.&lt;br /&gt;
* '''afAcceleration''': acceleration .in m/s^2&lt;br /&gt;
* '''afMaxSpeed''': the maximum speed of movement.&lt;br /&gt;
* '''afSlowDownDist''': the distance at which movement slows down.&lt;br /&gt;
* '''abResetSpeed''': if all static movement for the area should be stopped before starting this movement.&lt;br /&gt;
* '''asCallback''': callback when movement is done: void asCallback(const tString&amp;amp; in asAreaName)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Area_PlaceAtEntity =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void Area_PlaceAtEntity(const tString &amp;amp;in asAreaName,&lt;br /&gt;
                        const tString &amp;amp;in asTargetEntity,&lt;br /&gt;
                        bool abAlignRotation=false)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Places the specified area at another entity, optionally aligning its rotation with the target entity.&lt;br /&gt;
* '''asAreaName''': name of the area.&lt;br /&gt;
* '''asTargetEntity''': entity to place at&lt;br /&gt;
* '''abAlignRotation''': if true the entity will be given the same rotation as the target entity.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Area_StopMovement =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void Area_StopMovement(const tString &amp;amp;in asName)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Stops an area that is already moving. !This is not for liquid areas!&lt;br /&gt;
* '''asName''': name of the area to stop moving, wildcard(s) * are supported.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Doorway_PlayerIsInGroup =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool Doorway_PlayerIsInGroup(const tString &amp;amp;in asGroupName)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if the player has passed through one of the doorway areas belonging to this group and hasn't gone back out.&lt;br /&gt;
* '''asGroupName''': name of the group.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Doorway_SetPlayerIsInGroup =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void Doorway_SetPlayerIsInGroup(const tString &amp;amp;in asGroupName,&lt;br /&gt;
                                bool abIsInGroup=true)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Explicitly set, for if the player starts in a group or is teleported in or out.&lt;br /&gt;
* '''asGroupName''': name of the group.&lt;br /&gt;
* '''abIsInGroup''': state to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Doorway_EntityIsInGroup =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool Doorway_EntityIsInGroup(const tString &amp;amp;in asEntityName,&lt;br /&gt;
                             const tString &amp;amp;in asGroupName)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if the specified entity has passed through one of the doorway areas belonging to this group and hasn't gone back out. Note that this will only return true if the entity has physically passed though the doorway, not if they start out inside or are teleported into the area.&lt;br /&gt;
* '''asEntityName''': name of the entity to check.&lt;br /&gt;
* '''asGroupName''': name of the group.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Doorway_SetEntityIsInGroup =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void Doorway_SetEntityIsInGroup(const tString &amp;amp;in asEntityName,&lt;br /&gt;
                                const tString &amp;amp;in asGroupName,&lt;br /&gt;
                                bool abIsInGroup=true)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Explicitly set, for if the specified entity starts in a group or is teleported in or out.&lt;br /&gt;
* '''asEntityName''': name of the entity to set the state of.&lt;br /&gt;
* '''asGroupName''': name of the group.&lt;br /&gt;
* '''abIsInGroup''': state to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== LiquidArea_MoveLinearTo =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void LiquidArea_MoveLinearTo(const tString &amp;amp;in asName,&lt;br /&gt;
                             const tString &amp;amp;in asTargetEntity,&lt;br /&gt;
                             float afAcceleration,&lt;br /&gt;
                             float afMaxSpeed,&lt;br /&gt;
                             float afSlowDownDist=0.0f,&lt;br /&gt;
                             bool abResetSpeed=false,&lt;br /&gt;
                             const tString &amp;amp;in asCallback=&amp;quot;&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Moves the specified liquid area to the current position of the target entity.&lt;br /&gt;
* '''asName''': name of the liquid area to move, wildcard(s) * are supported.&lt;br /&gt;
* '''asTargetEntity''': name of the entity to move the liquid area to.&lt;br /&gt;
* '''afAcceleration''': acceleration .in m/s^2&lt;br /&gt;
* '''afMaxSpeed''': the maximum speed of movement.&lt;br /&gt;
* '''afSlowDownDist''': the distance at which movement slows down.&lt;br /&gt;
* '''abResetSpeed''': if all static movement for the liquid area should be stopped before starting this movement.&lt;br /&gt;
* '''asCallback''': callback when movement is done: void asCallback(const tString&amp;amp; in asAreaName)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== LiquidArea_StopMovement =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void LiquidArea_StopMovement(const tString &amp;amp;in asName)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== LiquidArea_SetEffectOnExit =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void LiquidArea_SetEffectOnExit(const tString &amp;amp;in asName,&lt;br /&gt;
                                bool abState)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Sets whether screen effects should be shown when the camera leaves the area.&lt;br /&gt;
* '''asName''': name of the liquid area, wildcard(s) * are supported.&lt;br /&gt;
* '''abState''': state to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_AttachEntity =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void StickyArea_AttachEntity(const tString &amp;amp;in asArea,&lt;br /&gt;
                             const tString &amp;amp;in asEntity,&lt;br /&gt;
                             const tString &amp;amp;in asBody)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Attaches an entity to a sticky area. The entity must have a physics body.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
* '''asEntity''': name of entity.&lt;br /&gt;
* '''asBody''': name of specific body on entity, if left as an emtpy string, the main body will be used.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_AttachBody =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void StickyArea_AttachBody(const tString &amp;amp;in asArea,&lt;br /&gt;
                           const tString &amp;amp;in asBody)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Attaches a physics body to a sticky area.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
* '''asBody''': name of body to attach.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_Detach =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void StickyArea_Detach(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Detaches anything attached to a sticky area.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_GetProp =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
iLuxEntity StickyArea_GetProp(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the entity attached to the area.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': iLuxEntity @, the attached entity of the area, or null if no entity is attached.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_GetAttachedEntityName =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
tString StickyArea_GetAttachedEntityName(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the name of the attached entity.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': tString , name of the attached entity. An empty string if no entity is attached.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_GetBody =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
iPhysicsBody StickyArea_GetBody(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the body attached to the area.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': iPhysicsBody @, the attached body of the area, or null if no body is attached.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== StickyArea_GetPoseTime =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float StickyArea_GetPoseTime(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the time it takes for the specified sticky area to pose an attached entity.&lt;br /&gt;
* '''asArea''': name of sticky area.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, pose time in seconds.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetMaxYaw =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetMaxYaw(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the maximum yaw for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, max yaw in radians.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetMaxPitch =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetMaxPitch(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the maximum pitch for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, max pitch in radians.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetLookSpeedMul =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetLookSpeedMul(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the look speed multiplier for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, look speed multiplier.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetForwardTime =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetForwardTime(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the time it takes to go to the next node in the animation.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, forward time in seconds&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetForwardSpeed =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetForwardSpeed(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the forward speed for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, forward speed measured in &amp;quot;nodes per second&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetBackTime =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetBackTime(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the time it takes to go back to this node from the next node in the animation.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, back time in seconds&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetBackSpeed =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetBackSpeed(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the back speed for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, back speed measured in &amp;quot;nodes per second&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetAutoMove =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetAutoMove(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the amount of auto move in the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': float, auto move amount, 1 being full speed ahead and -1 being full speed back.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_SetAutoMove =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void CameraAnimationNode_SetAutoMove(const tString &amp;amp;in asArea,&lt;br /&gt;
                                     const float afAutoMove)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Sets the auto move amount for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
* '''afAutoMove''': amount to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_FadeAutoMove =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void CameraAnimationNode_FadeAutoMove(const tString &amp;amp;in asArea,&lt;br /&gt;
                                      const float afAutoMove,&lt;br /&gt;
                                      const float afTime,&lt;br /&gt;
                                      const eEasing aEasing=eEasing_QuartInOut)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Fades the auto move amount for the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
* '''afAutoMove''': Target auto move amount.&lt;br /&gt;
* '''afTime''': Time that the fading will take (?).&lt;br /&gt;
* '''aEasing''': Easing curve to be used for fading.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetLookMoveDist =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetLookMoveDist(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetLookMoveAngle =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
float CameraAnimationNode_GetLookMoveAngle(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetInteractiveMovement =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool CameraAnimationNode_GetInteractiveMovement(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns if the node takes movement input from the player.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': bool, true if the node's movement is interactive.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_SetInteractiveMovement =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void CameraAnimationNode_SetInteractiveMovement(const tString &amp;amp;in asArea,&lt;br /&gt;
                                                bool abX)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Sets if the node should take movement input from the player.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
* '''abX''': state to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetCrouchOnExit =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool CameraAnimationNode_GetCrouchOnExit(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if the player should crouch if the animation stops at this node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': bool, true if the player should crouch on exit.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetInitToCamera =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool CameraAnimationNode_GetInitToCamera(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if the node should be placed at the camera's position and orientation when the animation starts.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': bool, true if the node should initialize to the camera.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_SetInitToCamera =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void CameraAnimationNode_SetInitToCamera(const tString &amp;amp;in asArea,&lt;br /&gt;
                                         bool abInitToCamera)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Sets if the node should be placed at the camera's position and orientation when the animation starts.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
* '''abInitToCamera''': state to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetUseSpeedFading =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool CameraAnimationNode_GetUseSpeedFading(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if the node fades its speeds (back and forward) between this and the previous node in the animation.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': bool, true if the node fades its speeds.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_GetCallbackFunc =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
tString CameraAnimationNode_GetCallbackFunc(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns the callback function of the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': tString , the callback function.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_SetCallbackFunc =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
void CameraAnimationNode_SetCallbackFunc(const tString &amp;amp;in asArea,&lt;br /&gt;
                                         const tString &amp;amp;in asFunction)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Sets the callback function of the specified node.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
* '''asFunction''': the callback function to set.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== CameraAnimationNode_HasBackMovement =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
bool CameraAnimationNode_HasBackMovement(const tString &amp;amp;in asArea)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Returns true if it's possible to move from the next node in the animation to this one.&lt;br /&gt;
* '''asArea''': name of animation node.&lt;br /&gt;
&lt;br /&gt;
 '''Returns''': bool, true if it's possible to move back to this node.&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
		
	</entry>
</feed>