animationPhase: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}}")
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
(36 intermediate revisions by 2 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 |Multiplayer Arguments=
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| 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. |DESCRIPTION=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| object '''animationPhase''' animationName |SYNTAX=
|game5= arma2oa
|version5= 1.50


|p1= object: [[Object]] - building eg |PARAMETER1=
|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. |PARAMETER2=
|game7= arma3
|version7= 0.50


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


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


|x2= <code>_flagPole [[animationPhase]] "flag";</code> |EXAMPLE2=
|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.


|x3= <code>_tank [[animationPhase]] "MainTurret";</code> |EXAMPLE3=
|mp= In {{ofp}}, on dedicated servers, ''animationPhase'' will always return 0, no matter what the actual phase is.
____________________________________________________________________________________________


| mp = In OFP, on dedicated servers, ''animationPhase'' will always return 0, no matter what the actual phase is. |= Multiplayer
|s1= object [[animationPhase]] animationName
| [[animate]], [[moveTime]], [[setFaceAnimation]], [[animateDoor]], [[doorPhase]], [[animateSource]], [[animationSourcePhase]], [[animationNames]] |SEEALSO=


}}
|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 Armed Assault|ANIMATIONPHASE]]
[[Category:Command_Group:_System|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 11:21, 13 May 2022

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