mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
544 B
Plaintext
23 lines
544 B
Plaintext
/**
|
|
* fn_updateAllKeyBindings_f.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
|
|
|
|
private ["_name","_currentKeyBinding"];
|
|
{
|
|
_name = _x select 0;
|
|
_currentKeyBinding = _x select 1;
|
|
_x set [1,([_name, _currentKeyBinding, "menu"] call cse_fnc_getKeyBindingFromProfile_F)];
|
|
}foreach CSE_F_KEYBINDINGS_MENUS;
|
|
|
|
{
|
|
_name = _x select 0;
|
|
_currentKeyBinding = _x select 1;
|
|
_x set [1,([_name, _currentKeyBinding, "action"] call cse_fnc_getKeyBindingFromProfile_F)];
|
|
}foreach CSE_F_KEYBINDINGS_ACTIONS; |