forked from sperrgebiet/FS19_VehicleExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodDesc.xml
96 lines (86 loc) · 3.87 KB
/
modDesc.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="43">
<author>sperrgebiet</author>
<version>0.9.3.9</version>
<title>Vehicle Explorer</title>
<description>
<en>
<![CDATA[
This is a revamp of the good old VehicleSort from FS17.
For beginners: VehicleExplorer helps you organize your vehicles, by showing you a list which can be organized, well, sorted by you.
More Details: https://github.com/sperrgebiet/FS19_VehicleExplorer
]]>
</en>
<de>
<![CDATA[
Dies ist eine Reinkarnation von VehicleSort aus LS17.
Für Neueinsteiger: VehicleExplorer hilft beim organisiere der Fahrzeuge. Es zeigt eine Liste welche dann selbst nach eigenen Wünschen sortiert werden kann.
Mehr Details: https://github.com/sperrgebiet/FS19_VehicleExplorer
]]>
</de>
</description>
<!-- "translations/l10n_<language>.xml -->
<l10n filenamePrefix="translations/l10n" />
<iconFilename>icon.dds</iconFilename>
<multiplayer supported="false" />
<extraSourceFiles>
<sourceFile filename="RegisterSpecialization.lua" />
</extraSourceFiles>
<registerSpecializations debugPriority="0">
<registerSpecialization name="vehicleSort" className="VehicleSort" filename="VehicleSort.lua" searchedSpecializations="Enterable"/>
<registerSpecialization name="vehicleStatus" className="VehicleStatus" filename="VehicleStatus.lua" searchedSpecializations="Motorized TurnOnVehicle Lights"/>
</registerSpecializations>
<actions>
<action name="vsToggleList" axisType="HALF" />
<action name="vsLockListItem" axisType="HALF" />
<action name="vsMoveCursorUp" axisType="HALF" />
<action name="vsMoveCursorDown" axisType="HALF" />
<action name="vsMoveCursorUpFast" axisType="HALF" />
<action name="vsMoveCursorDownFast" axisType="HALF" />
<action name="vsChangeVehicle" axisType="HALF" />
<action name="vsShowConfig" axisType="HALF" />
<action name="vsTogglePark" axisType="HALF" />
<action name="vsRepair" axisType="HALF" />
<action name="vsTab" axisType="HALF" />
<action name="vsTabBack" axisType="HALF" />
</actions>
<inputBinding>
<actionBinding action="vsToggleList">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_v" index="1" />
<binding device="KB_MOUSE_DEFAULT" input="MOUSE_BUTTON_X1" axisComponent="+" neutralInput="0" index="3"/>
</actionBinding>
<actionBinding action="vsLockListItem">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_KP_5" index="1" />
</actionBinding>
<actionBinding action="vsMoveCursorUp">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_KP_8" index="1" />
</actionBinding>
<actionBinding action="vsMoveCursorDown">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_KP_2" index="1" />
</actionBinding>
<actionBinding action="vsMoveCursorUpFast">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_1" index="1" />
</actionBinding>
<actionBinding action="vsMoveCursorDownFast">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_2" index="1" />
</actionBinding>
<actionBinding action="vsChangeVehicle">
<binding device="KB_MOUSE_DEFAULT" input="KEY_KP_enter" index="1" />
</actionBinding>
<actionBinding action="vsShowConfig">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_KP_minus" index="1" />
</actionBinding>
<actionBinding action="vsTogglePark">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_p" index="1" />
</actionBinding>
<actionBinding action="vsRepair">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_r" index="1" />
</actionBinding>
<actionBinding action="vsTab">
<binding device="KB_MOUSE_DEFAULT" input="KEY_tab" index="1" />
</actionBinding>
<actionBinding action="vsTabBack">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lshift KEY_tab" index="1" />
</actionBinding>
</inputBinding>
</modDesc>