You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
387 B

local _, addon = ...
NarciGamePadAPI = {};
local ACTION_GOUPS = {};
addon.actionGroups = ACTION_GOUPS;
local MAPPING_XBOX = {
["A"] = 1,
["B"] = 2,
["X"] = 3,
["Y"] = 4,
};
local ACTIVE_MAPPING = MAPPING_XBOX;
local function GetPadKeyIndexByName(name)
return ACTIVE_MAPPING[name] or 0
end
addon.GetPadKeyIndexByName = GetPadKeyIndexByName;