-
Notifications
You must be signed in to change notification settings - Fork 54
/
Bindings.xml
31 lines (30 loc) · 1.12 KB
/
Bindings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Bindings>
<Binding name="VGUIDE_TOGGLE" description="Toggle Vanilla Guide" header="VGUIDE">
<!-- VGuide:ToggleMainWindow() -->
if VGuide.UI.fMain.tWidgets.frame_MainFrame:IsVisible() then
VGuide.UI.fMain.tWidgets.frame_MainFrame:Hide()
else
VGuide.UI.fMain.tWidgets.frame_MainFrame:Show()
end
</Binding>
<Binding name="VGUIDE_PREV_STEP" description="Go to the Prev Step">
<!-- VGuide:PrevStep() -->
VGuide.Display:PrevStep(true)
VGuide.UI.fMain:RefreshData()
</Binding>
<Binding name="VGUIDE_NEXT_STEP" description="Go to the Next Step">
<!-- VGuide:NextStep() -->
VGuide.Display:NextStep()
VGuide.UI.fMain:RefreshData()
</Binding>
<Binding name="VGUIDE_PREV_GUIDE" description="Go to the Prev Guide">
<!-- VGuide:PrevGuide() -->
VGuide.Display:PrevGuide()
VGuide.UI.fMain:RefreshData()
</Binding>
<Binding name="VGUIDE_NEXT_GUIDE" description="Go to the Next Guide">
<!-- VGuide:NextGuide() -->
VGuide.Display:NextGuide()
VGuide.UI.fMain:RefreshData()
</Binding>
</Bindings>