ezCollections/Bindings.xml
2025-02-28 20:03:35 +08:00

53 lines
2.1 KiB
XML

<Bindings>
<Binding name="EZCOLLECTIONS_UNLOCK_SKIN" description="Unlock Skin Under Mouse Cursor" header="EZCOLLECTIONS">
ezCollections:UnlockSkinUnderCursor();
</Binding>
<Binding name="EZCOLLECTIONS_MENU_ISENGARD" description="Open .isengard Menu">
ezCollections:MenuIsengard();
</Binding>
<Binding name="EZCOLLECTIONS_MENU_TRANSMOG" description="Open Transmogrification Menu">
ezCollections:MenuTransmog();
</Binding>
<Binding name="EZCOLLECTIONS_MENU_TRANSMOG_SETS" description="Open Transmogrification Sets Menu">
ezCollections:MenuTransmogSets();
</Binding>
<Binding name="EZCOLLECTIONS_MENU_COLLECTIONS" description="Open Collections Menu">
ezCollections:MenuCollections();
</Binding>
<Binding name="EZCOLLECTIONS_MENU_DAILY" description="Open Isengard Activity Menu">
ezCollections:MenuDaily();
</Binding>
<Binding name="TOGGLECOLLECTIONS">
if CollectionsJournal:IsShown() or WardrobeFrame:IsShown() then
HideUIPanel(CollectionsJournal);
HideUIPanel(WardrobeFrame);
elseif ezCollections:GetCVar("petJournalTab") ~= 6 then
HideUIPanel(WardrobeFrame);
ShowUIPanel(CollectionsJournal);
else
HideUIPanel(CollectionsJournal);
ShowUIPanel(WardrobeFrame);
end
</Binding>
<Binding name="TOGGLECOLLECTIONSMOUNTJOURNAL">
ToggleCollectionsJournal(COLLECTIONS_JOURNAL_TAB_INDEX_MOUNTS);
</Binding>
<Binding name="TOGGLECOLLECTIONSPETJOURNAL">
ToggleCollectionsJournal(COLLECTIONS_JOURNAL_TAB_INDEX_PETS);
</Binding>
<Binding name="TOGGLECOLLECTIONSTOYBOX">
ToggleCollectionsJournal(COLLECTIONS_JOURNAL_TAB_INDEX_TOYS);
</Binding>
<!--
<Binding name="TOGGLECOLLECTIONSHEIRLOOM">
ToggleCollectionsJournal(COLLECTIONS_JOURNAL_TAB_INDEX_HEIRLOOMS);
</Binding>
-->
<Binding name="TOGGLECOLLECTIONSWARDROBE">
ToggleCollectionsJournal(COLLECTIONS_JOURNAL_TAB_INDEX_APPEARANCES);
</Binding>
<Binding name="TOGGLETRANSMOGRIFY">
ToggleFrame(WardrobeFrame);
</Binding>
</Bindings>