BIS fnc 3den onKeyDown: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Some wiki formatting)
 
(6 intermediate revisions by the same user not shown)
Line 6: Line 6:
|gr1= KeyframeAnimation
|gr1= KeyframeAnimation


|descr= Used internally by the [[Arma 3 Key Frame Animation]] system. Called when a button is pressed.
|descr= Used internally by the [[Arma 3: Key Frame Animation]] system. Called when a button is pressed.


|s1= [display, button, shift, ctrl, alt] call [[BIS_fnc_3den_onKeyDown]]
|s1= [display, button, shift, ctrl, alt] call [[BIS_fnc_3den_onKeyDown]]


|p1= display: [[Display]] - The display
|p1= display: [[Display]] - the display


|p2= button: [[Number]] - Key code of the pressed button
|p2= button: [[Number]] - key code of the pressed button


|p3= shift: [[Boolean]] - SHIFT key
|p3= shift: [[Boolean]] - {{Controls|Shift}} key


|p4= ctrl: [[Boolean]] - CTRL key
|p4= ctrl: [[Boolean]] - {{Controls|Ctrl}} key


|p5= alt: [[Boolean]] - ALT key
|p5= alt: [[Boolean]] - {{Controls|Alt}} key


|r1= [[Boolean]] - Whether or not to consume the input
|r1= [[Boolean]] - whether or not to consume the input


|x1= <code>findDisplay 313 displayAddEventHandler ["keyDown", {[[Magic Variables#this|_this]] call [[BIS_fnc_3den_onKeyDown]]}];</code>
|x1= <sqf>findDisplay 313 displayAddEventHandler ["keyDown", { _this call BIS_fnc_3den_onKeyDown }];</sqf>


|seealso= [[Arma 3 Key Frame Animation]]
|seealso= [[Arma 3: Key Frame Animation]]
}}
}}

Latest revision as of 11:38, 27 March 2024

Hover & click on the images for description

Description

Description:
Used internally by the Arma 3: Key Frame Animation system. Called when a button is pressed.
Execution:
call
Groups:
KeyframeAnimation

Syntax

Syntax:
[display, button, shift, ctrl, alt] call BIS_fnc_3den_onKeyDown
Parameters:
display: Display - the display
button: Number - key code of the pressed button
shift: Boolean - ⇧ Shift key
ctrl: Boolean - Ctrl key
alt: Boolean - Alt key
Return Value:
Boolean - whether or not to consume the input

Examples

Example 1:
findDisplay 313 displayAddEventHandler ["keyDown", { _this call BIS_fnc_3den_onKeyDown }];

Additional Information

See also:
Arma 3: Key Frame Animation

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