ctrlSetAngle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Command " to "{{RV|type=command ")
m (Text replacement - " *\| *PARAMETER[0-9]{1,3} *= * " to " ")
Line 24: Line 24:
|s2= control [[ctrlSetAngle]] [angle, centerX, centerY, now] {{Since|arma3|1.78.143717|y}}
|s2= control [[ctrlSetAngle]] [angle, centerX, centerY, now] {{Since|arma3|1.78.143717|y}}


|p21= control: [[Control]] - picture control |PARAMETER21=
|p21= control: [[Control]] - picture control


|p22= [angle, centerX, centerY]: [[Array]] |PARAMETER22=
|p22= [angle, centerX, centerY]: [[Array]]


|p23= angle: [[Number]] - Rotation angle (clockwise) |PARAMETER23=
|p23= angle: [[Number]] - Rotation angle (clockwise)


|p24= centerX: [[Number]] - Rotation center X in range 0 to 1 (0.5 - control center) |PARAMETER24=
|p24= centerX: [[Number]] - Rotation center X in range 0 to 1 (0.5 - control center)


|p25= centerY: [[Number]] - Rotation center Y in range 0 to 1 (0.5 - control center)|PARAMETER25=
|p25= centerY: [[Number]] - Rotation center Y in range 0 to 1 (0.5 - control center)


|p26= now: [[Boolean]] - (Optional, default [[true]]) if [[false]], control will wait for [[ctrlCommit]] input for result to apply |PARAMETER26=
|p26= now: [[Boolean]] - (Optional, default [[true]]) if [[false]], control will wait for [[ctrlCommit]] input for result to apply


|r2= [[Nothing]]
|r2= [[Nothing]]

Revision as of 19:13, 29 January 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
GUI Control

Syntax

Syntax:
Syntax needed
Parameters:
control: Control - picture control
[angle, centerX, centerY]: Array
angle: Number - Rotation angle (clockwise)
centerX: Number - Rotation center X in range 0 to 1 (0.5 - control center)
centerY: Number - Rotation center Y in range 0 to 1 (0.5 - control center)
Return Value:
Return value needed

Alternative Syntax

Syntax:
control ctrlSetAngle [angle, centerX, centerY, now] Template:Since
Parameters:
control: Control - picture control
[angle, centerX, centerY]: Array
angle: Number - Rotation angle (clockwise)
centerX: Number - Rotation center X in range 0 to 1 (0.5 - control center)
centerY: Number - Rotation center Y in range 0 to 1 (0.5 - control center)
now: Boolean - (Optional, default true) if false, control will wait for ctrlCommit input for result to apply
Return Value:
Nothing

Examples

Example 1:
_control ctrlSetAngle [25, 0.5, 0.5];
Example 2:
with uiNamespace do { ctrl = findDisplay 46 ctrlCreate ["RscPictureKeepAspect", -1]; ctrl ctrlSetPosition [0,0,1,1]; ctrl ctrlSetText "A3\Missions_F_Exp\data\Img\lobby\ui_campaign_lobby_background_tablet_radial_left_ca.paa"; ctrl ctrlCommit 0; angle = 0; onEachFrame { with uiNamespace do { if (angle > 359) then {angle = 0}; ctrl ctrlSetAngle [angle, 0.5, 0.5]; angle = angle + 1; }; }; };
Example 3:
_control ctrlSetAngle [25, 0.5, 0.5, false]; _control ctrlCommit 1; // Rotation applies smoothly for 1 second.

Additional Information

See also:
See also needed

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