forked from JanCraymer/FS22_AdjustableCamera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodDesc.xml
More file actions
82 lines (76 loc) · 3.44 KB
/
modDesc.xml
File metadata and controls
82 lines (76 loc) · 3.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="92">
<author>CptCray</author>
<version>2.0.0.0</version>
<title>
<en>Adjustable Camera</en>
<de>Anpassbare Kamera</de>
<ru>Перемещаемая Камера</ru>
</title>
<description>
<en><![CDATA[This mod allows to move the position of the indoor camera.
Please configure your inputs as you wish as there are no defaults defined.]]></en>
<de><![CDATA[Dieser Mod ermöglicht es, die Innenansichtskameraposition anzupassen.
Bitte richte dir die Tastenbelegung ein, wie es dir am besten passt. Es gibt keine Standardbelegung.]]></de>
</description>
<iconFilename>icon.dds</iconFilename>
<multiplayer supported="true"/>
<extraSourceFiles>
<sourceFile filename="AdjustableCameraRegister.lua"/>
</extraSourceFiles>
<actions>
<action name="ADJUSTABLE_CAMERA_FORWARD" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_BACKWARD" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_LEFT" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_RIGHT" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_DOWN" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_UP" axisType="HALF"/>
<action name="ADJUSTABLE_CAMERA_RESET" axisType="HALF"/>
</actions>
<inputBinding>
<actionBinding action="ADJUSTABLE_CAMERA_FORWARD"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_BACKWARD"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_LEFT"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_RIGHT"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_DOWN"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_UP"></actionBinding>
<actionBinding action="ADJUSTABLE_CAMERA_RESET"></actionBinding>
</inputBinding>
<l10n>
<text name="input_ADJUSTABLE_CAMERA_FORWARD">
<en>Move camera forward</en>
<de>Kamera nach vorn bewegen</de>
<ru>Переместить камеру вперёд</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_BACKWARD">
<en>Move camera backward</en>
<de>Kamera nach hinten bewegen</de>
<ru>Переместить камеру назад</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_LEFT">
<en>Move camera to the left</en>
<de>Kamera nach links bewegen</de>
<ru>Переместить камеру влево</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_RIGHT">
<en>Move camera to the right</en>
<de>Kamera nach rechts bewegen</de>
<ru>Переместить камеру вправо</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_DOWN">
<en>Move camera down</en>
<de>Kamera nach unten bewegen</de>
<ru>Переместить камеру вниз</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_UP">
<en>Move camera up</en>
<de>Kamera nach oben bewegen</de>
<ru>Переместить камеру вверх</ru>
</text>
<text name="input_ADJUSTABLE_CAMERA_RESET">
<en>Reset camera</en>
<de>Kamera zurücksetzen</de>
<ru>Отменить перемещения камеры</ru>
</text>
</l10n>
</modDesc>