ctrlCommit: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Reset version to 1.00)
(minor sentence formatting edit.)
 
(74 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|version1= 1.00


|1.00|= Game version
|game2= arma2
____________________________________________________________________________________________
|version2= 1.00


| Commit control animation. |= Description
|game3= arma2oa
____________________________________________________________________________________________
|version3= 1.50


| control '''ctrlCommit''' time |= Syntax
|game4= tkoh
|version4= 1.00


|p1= control: [[Control]] |= Parameter 1
|game5= arma3
|version5= 0.50


|p2= time: [[Number]] |= Parameter 2
|gr1= GUI Control


| [[Nothing]] |= Return value
|descr= Commits control animation to last specified duration.
____________________________________________________________________________________________
{{Feature|important|The duration of the animation is not guaranteed to be exactly the same as the given time.}}
 
|x1= <pre>_control ctrlCommit 2</pre> |= Example 1
____________________________________________________________________________________________


| |= See also
|s1= control [[ctrlCommit]] time


}}
|p1= control: [[Control]] - control to animate
 
|p2= time: [[Number]] - animation duration
 
|r1= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>_control ctrlCommit 2; // make animation last approx. 2 seconds</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|seealso= [[ctrlCommitted]] [[ctrlSetPosition]] [[ctrlSetFade]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
|user= Nelis.75733126
|timestamp= 20150411230600
|text= '''2024-04-16 edit:''':
<sqf inline>ctrlCommit</sqf> is required to apply the effect of, for example, ctrlSetFade.
}}


[[Category:Scripting Commands|CTRLCOMMIT]]
{{Note
[[Category:Scripting Commands ArmA|CTRLCOMMIT]]
|user= Demellion
|timestamp= 20170828113300
|text= The resulting speed might not to be exactly what [[ctrlCommit]] commands it to be. It seems to be dependent on your current framerate. Example:
<sqf>_ctrl ctrlSetFade 0.5;
_ctrl ctrlCommit 1;</sqf>
Will actually result in:
{{{!}} class="wikitable"
! FPS
! Duration
{{!}}-
{{!}} 60+
{{!}} ~1.0s
{{!}}-
{{!}} ~30
{{!}} ~1.2s
{{!}}-
{{!}} 10-
{{!}} ~5-10s
{{!}}}
This phenomenon probably occurs because of engine time simulation disruption caused by performance damage.
}}

Latest revision as of 19:06, 16 April 2024

Hover & click on the images for description

Description

Description:
Commits control animation to last specified duration.
The duration of the animation is not guaranteed to be exactly the same as the given time.
Groups:
GUI Control

Syntax

Syntax:
control ctrlCommit time
Parameters:
control: Control - control to animate
time: Number - animation duration
Return Value:
Nothing

Examples

Example 1:
_control ctrlCommit 2; // make animation last approx. 2 seconds

Additional Information

See also:
ctrlCommitted ctrlSetPosition ctrlSetFade

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
Nelis.75733126 - c
Posted on Apr 11, 2015 - 23:06 (UTC)
2024-04-16 edit:: ctrlCommit is required to apply the effect of, for example, ctrlSetFade.
Demellion - c
Posted on Aug 28, 2017 - 11:33 (UTC)
The resulting speed might not to be exactly what ctrlCommit commands it to be. It seems to be dependent on your current framerate. Example:
_ctrl ctrlSetFade 0.5; _ctrl ctrlCommit 1;
Will actually result in:
FPS Duration
60+ ~1.0s
~30 ~1.2s
10- ~5-10s

This phenomenon probably occurs because of engine time simulation disruption caused by performance damage.