camCommitPrepared: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(37 intermediate revisions by 4 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


|arg= local |= Arguments in MP
|game3= arma2oa
|version3= 1.50


|eff= local |= Effects in MP
|game4= tkoh
____________________________________________________________________________________________
|version4= 1.00


| Smoothly conduct the changes that were assigned to a camera within the given time. If the time is set to zero, the changes are done immediately. |= Description
|game5= arma3
____________________________________________________________________________________________
|version5= 0.50


| camera [[camCommitPrepared]] time |= Syntax
|arg= local


|p1= camera: [[Object]] - object of type "camera" |= Parameter 1
|eff= local


|p2= time: [[Number]] - time in seconds during which the changes shall be done |= Parameter 2
|gr1= Camera Control


| [[Nothing]] |= Return value
|descr= Smoothly conducts the changes that were assigned to a camera within the given time. If the time is set to zero, the changes are done immediately.
____________________________________________________________________________________________
This command is for use with {{hl|camPrepareXXX}} commands. For the normal cam command use [[camCommit]].
 
|x1= <code>//create a camera object
_cam <nowiki>=</nowiki> "camera" [[camCreate]] [5600,4800,10];
_cam [[camPrepareTarget]] [[player]];
_cam [[cameraEffect]] ["internal", "BACK"];
_cam [[camCommitPrepared]] 0;
//smoothly move the camera to its new position in 6 seconds.
_cam [[camPreparePos]] [5680,4720,20];
_cam [[camCommitPrepared]] 6;
[[waitUntil]] {[[camCommitted]] _cam};
//proceed</code> |= Example 1
____________________________________________________________________________________________


| [[camCommit]] |= See also
|s1= camera [[camCommitPrepared]] time


}}
|p1= camera: [[Object]] - object of type "camera"
 
|p2= time: [[Number]] - time in seconds in which the changes shall be done


<h3 style="display:none">Notes</h3>
|r1= [[Nothing]]
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x1= <sqf>
</dl>
// create a camera object
_cam = "camera" camCreate [5600, 4800, 10];
_cam camPrepareTarget player;
_cam cameraEffect ["internal", "BACK"];
_cam camCommitPrepared 0;


<h3 style="display:none">Bottom Section</h3>
// smoothly move the camera to its new position in 6 seconds
_cam camPreparePos [5680, 4720, 20];
_cam camCommitPrepared 6;
waitUntil { camCommitted _cam };


[[Category:Scripting Commands|CAMCOMMITPREPARED]]
// proceed
[[Category:Scripting Commands ArmA|CAMCOMMITPREPARED]]
</sqf>
[[Category:Command Group: Camera Control|CAMCOMMITPREPARED]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
|seealso= [[camCommitted]] [[camCommit]]
<dl class="command_description">
}}
<dd class="notedate">Posted on November 7, 2018 - 13:33 (UTC)</dd>
<dt class="note">[[User:HazJ|HazJ]]</dt>
<dd class="note">
[[camCommitPrepared]] is the same as [[camCommit]].
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 16:51, 8 November 2023

Hover & click on the images for description

Description

Description:
Smoothly conducts the changes that were assigned to a camera within the given time. If the time is set to zero, the changes are done immediately. This command is for use with camPrepareXXX commands. For the normal cam command use camCommit.
Groups:
Camera Control

Syntax

Syntax:
camera camCommitPrepared time
Parameters:
camera: Object - object of type "camera"
time: Number - time in seconds in which the changes shall be done
Return Value:
Nothing

Examples

Example 1:
// create a camera object _cam = "camera" camCreate [5600, 4800, 10]; _cam camPrepareTarget player; _cam cameraEffect ["internal", "BACK"]; _cam camCommitPrepared 0; // smoothly move the camera to its new position in 6 seconds _cam camPreparePos [5680, 4720, 20]; _cam camCommitPrepared 6; waitUntil { camCommitted _cam }; // proceed

Additional Information

See also:
camCommitted camCommit

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