-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodDesc.xml
More file actions
68 lines (51 loc) · 3.55 KB
/
modDesc.xml
File metadata and controls
68 lines (51 loc) · 3.55 KB
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
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="105">
<author>aaw3k</author>
<version>1.0.0.0</version>
<title>
<en>Trip Computer</en>
<de>Bordcomputer</de>
<fr>Ordinateur De Bord</fr>
<pl>Komputer Pokładowy</pl>
<ru>Бортовой Компьютер</ru>
</title>
<description>
<en><![CDATA[Adds a simple trip computer to vehicles, tracking distance, fuel consumption, fuel economy, and range estimates, with multiple display modes and hold-to-reset functionality.
For more information or to report a bug, please visit GitHub (modnext/tripComputer).]]></en>
<de><![CDATA[Fügt Fahrzeugen einen einfachen Bordcomputer hinzu, der Entfernung, Kraftstoffverbrauch, Kraftstoffeffizienz und Reichweitenschätzungen verfolgt, mit mehreren Anzeigemodi und Halten-zum-Zurücksetzen-Funktionalität.
Für weitere Informationen oder um einen Fehler zu melden, besuchen Sie bitte GitHub (modnext/tripComputer).]]></de>
<fr><![CDATA[Ajoute un ordinateur de bord simple aux véhicules, suivant la distance, la consommation de carburant, l'économie de carburant et les estimations d'autonomie, avec plusieurs modes d'affichage et une fonctionnalité de réinitialisation par maintien.
Pour plus d'informations ou pour signaler un bug, veuillez visiter GitHub (modnext/tripComputer).]]></fr>
<pl><![CDATA[Dodaje prosty komputer pokładowy do pojazdów, śledzący przebieg, zużycie paliwa, średnie spalanie i szacowany zasięg, z wieloma trybami wyświetlania i funkcją resetowania przez przytrzymanie.
Aby uzyskać więcej informacji lub zgłosić błąd, odwiedź GitHub (modnext/tripComputer).]]></pl>
<ru><![CDATA[Добавляет простой бортовой компьютер к транспортным средствам, отслеживающий расстояние, расход топлива, экономию топлива и оценки запаса хода, с несколькими режимами отображения и функцией сброса удержанием.
Для получения дополнительной информации или сообщения об ошибке посетите GitHub (modnext/tripComputer).]]></ru>
</description>
<l10n filenamePrefix="l10n/l10n" />
<iconFilename>icon_tripComputer.dds</iconFilename>
<multiplayer supported="true" />
<extraSourceFiles>
<sourceFile filename="scripts/events/SetTripComputerModeEvent.lua" />
<sourceFile filename="scripts/events/ResetTripComputerEvent.lua" />
<!-- misc -->
<sourceFile filename="scripts/misc/AdditionalSpecialization.lua" />
<sourceFile filename="scripts/misc/TripComputerUtil.lua" />
<sourceFile filename="scripts/misc/TripComputerBuffer.lua" />
<!-- hud -->
<sourceFile filename="scripts/hud/TripComputerDisplay.lua" />
<sourceFile filename="scripts/hud/SpeedMeterDisplayExtension.lua" />
<sourceFile filename="scripts/hud/TripComputerHUDExtension.lua" />
</extraSourceFiles>
<specializations>
<specialization name="tripComputer" className="TripComputer" filename="scripts/specializations/TripComputer.lua" />
<specialization name="tripComputerField" className="TripComputerField" filename="scripts/specializations/TripComputerField.lua" />
</specializations>
<actions>
<action name="TOGGLE_TRIP_COMPUTER" category="VEHICLE" axisType="HALF" />
</actions>
<inputBinding>
<actionBinding action="TOGGLE_TRIP_COMPUTER">
<binding device="KB_MOUSE_DEFAULT" input="KEY_backslash" />
</actionBinding>
</inputBinding>
</modDesc>