animationPhase: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(removed old note which is now incorrect)
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *R([a-z ])" to "$1 - r$2")
 
(55 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofpr |= Game name
|game1= ofp
|version1= 1.75


|1.75|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |= Arguments in MP
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| Return the phase of the given animation on the given object, which is set by the [[animate]] command. |= Description
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| [[Number]] <nowiki>=</nowiki> object '''animationPhase''' animationName |= Syntax
|game5= arma2oa
|version5= 1.50


|p1= object: [[Object]] - building eg |= Parameter 1
|game6= tkoh
|version6= 1.00


|p2= animationName: [[String]] - name of the animation. This is the class-name of the animation defined in the addon's config.cpp. |= Parameter 2
|game7= arma3
|version7= 0.50


| [[Number]] - 
|arg= global
Integer of range 0 (start point of the animation) to 1 (end point of the animation). |= Return value
____________________________________________________________________________________________
 
|x1= <code>_building [[animate]] ["maindoor",1];
[[sleep]] 1;
_p = _building [[animationPhase]] "maindoor";</code>


returns 1 (if the animation speed is <nowiki><=</nowiki> 2 seconds) |= Example 1
|gr1= Animations
____________________________________________________________________________________________


| mp = In OFP, on dedicated servers, ''animationPhase'' will always return 0, no matter what the actual phase is. |= Multiplayer
|descr= Returns the phase of the given animation on the given object. Animation can be scripted ([[animate]], [[animateSource]], [[animateDoor]]) or engine driven. Animation names for an object could be found out with [[animationNames]] command. When animation is rotation, like with "MainTurret" for example, the output is in radians, to convert to degrees use [[deg]] command.
| [[animate]], [[setFaceAnimation]], [[animateDoor]], [[doorPhase]] |= See also


}}
|mp= In {{ofp}}, on dedicated servers, ''animationPhase'' will always return 0, no matter what the actual phase is.
 
|s1= object [[animationPhase]]  animationName
 
|p1= object: [[Object]]
 
|p2= animationName: [[String]] - name of the animation. This is the class-name of the animation defined in the addon's config.cpp
 
|r1= [[Number]] - range 0 (start point of the animation) to 1 (end point of the animation)
 
|x1= <sqf>_building animate ["maindoor",1];
sleep 1;
_p = _building animationPhase "maindoor";// Returns 1, if the animation speed is two seconds</sqf>


<h3 style="display:none">Notes</h3>
|x2= <sqf>_flagPole animationPhase "flag";</sqf>
<dl class="command_description">
</dl>


<h3 style="display:none">Bottom Section</h3>
|x3= <sqf>_tank animationPhase "MainTurret";</sqf>


[[Category:Scripting Commands|ANIMATIONPHASE]]
|seealso= [[animate]] [[moveTime]] [[setFaceAnimation]] [[animateDoor]] [[doorPhase]] [[animateSource]] [[animationSourcePhase]] [[animationNames]]
[[Category:Scripting Commands OFP 1.99|ANIMATIONPHASE]]
}}
[[Category:Scripting Commands OFP 1.96|ANIMATIONPHASE]]
[[Category:Scripting Commands ArmA|ANIMATIONPHASE]]
[[Category:Command_Group:_System_Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 16:47, 8 November 2023

Hover & click on the images for description

Description

Description:
Returns the phase of the given animation on the given object. Animation can be scripted (animate, animateSource, animateDoor) or engine driven. Animation names for an object could be found out with animationNames command. When animation is rotation, like with "MainTurret" for example, the output is in radians, to convert to degrees use deg command.
Multiplayer:
In Operation Flashpoint, on dedicated servers, animationPhase will always return 0, no matter what the actual phase is.
Groups:
Animations

Syntax

Syntax:
object animationPhase animationName
Parameters:
object: Object
animationName: String - name of the animation. This is the class-name of the animation defined in the addon's config.cpp
Return Value:
Number - range 0 (start point of the animation) to 1 (end point of the animation)

Examples

Example 1:
_building animate ["maindoor",1]; sleep 1; _p = _building animationPhase "maindoor";// Returns 1, if the animation speed is two seconds
Example 2:
_flagPole animationPhase "flag";
Example 3:
_tank animationPhase "MainTurret";

Additional Information

See also:
animate moveTime setFaceAnimation animateDoor doorPhase animateSource animationSourcePhase animationNames

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note