Skip to content

Commit

Permalink
1.2.0.0 - added option to choose which lines should be displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhooL committed Jan 25, 2022
1 parent 540cd4a commit fdfbd21
Show file tree
Hide file tree
Showing 14 changed files with 134 additions and 18 deletions.
18 changes: 13 additions & 5 deletions FS22_EnhancedVehicle.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
--
-- Author: Majo76
-- email: [email protected]
-- @Date: 24.01.2022
-- @Date: 25.01.2022
-- @Version: 1.2.0.0

--[[
CHANGELOG
2022-01-24 - V1.2.0.0
2022-01-25 - V1.2.0.0
+ added a display for the remaining distance to the headland trigger
+ added config option to choose which lines should be displayed (all, none, tracks only, vehicle+working width only)
+ added config XML option to specify sfx volume
* ATTENTION: Way of "how it works" changed:
- Press RShift+Home to switch throught operating modes: "snap to direction" or "snap to track"
Expand Down Expand Up @@ -208,6 +209,7 @@ function FS22_EnhancedVehicle:new(mission, modDirectory, modName, i18n, gui, inp
'FS22_EnhancedVehicle_SNAP_OPMODE',
'FS22_EnhancedVehicle_SNAP_CALC_WW',
'FS22_EnhancedVehicle_SNAP_GRID_RESET',
'FS22_EnhancedVehicle_SNAP_LINES_MODE',
'FS22_EnhancedVehicle_SNAP_TRACK',
'FS22_EnhancedVehicle_SNAP_TRACKP',
'FS22_EnhancedVehicle_SNAP_TRACKW',
Expand Down Expand Up @@ -438,6 +440,7 @@ function FS22_EnhancedVehicle:activateConfig()
FS22_EnhancedVehicle.track = {}
FS22_EnhancedVehicle.track.distanceAboveGround = lC:getConfigValue("track", "distanceAboveGround")
FS22_EnhancedVehicle.track.numberOfTracks = lC:getConfigValue("track", "numberOfTracks")
FS22_EnhancedVehicle.track.showLines = lC:getConfigValue("track", "showLines")
FS22_EnhancedVehicle.track.hideLines = lC:getConfigValue("track", "hideLines")
FS22_EnhancedVehicle.track.hideLinesAfter = lC:getConfigValue("track", "hideLinesAfter")
FS22_EnhancedVehicle.track.hideLinesAfterValue = 0
Expand Down Expand Up @@ -502,6 +505,7 @@ function FS22_EnhancedVehicle:resetConfig(disable)
-- track
lC:addConfigValue("track", "distanceAboveGround", "float", 0.15)
lC:addConfigValue("track", "numberOfTracks", "int", 5)
lC:addConfigValue("track", "showLines", "int", 1)
lC:addConfigValue("track", "hideLines", "bool", false)
lC:addConfigValue("track", "hideLinesAfter", "int", 5)
lC:addConfigValue("track.color", "red", "float", 255/255)
Expand Down Expand Up @@ -1030,7 +1034,7 @@ function FS22_EnhancedVehicle:onDraw()

-- draw helper line in front of vehicle
if self.vData.opMode >= 1 then
if _showLines then
if _showLines and FS22_EnhancedVehicle.track.showLines ~= 2 then
local p1 = { x = self.vData.px, y = self.vData.py, z = self.vData.pz }
p1.y = getTerrainHeightAtWorldPos(g_currentMission.terrainRootNode, p1.x, 0, p1.z) + FS22_EnhancedVehicle.snap.distanceAboveGroundVehicleMiddleLine
FS22_EnhancedVehicle:drawVisualizationLines(1,
Expand All @@ -1047,7 +1051,7 @@ function FS22_EnhancedVehicle:onDraw()
end

-- snap to direction lines
if self.vData.opMode >= 1 and self.vData.impl.isCalculated and self.vData.impl.workWidth > 0 and _showLines then
if self.vData.opMode >= 1 and self.vData.impl.isCalculated and self.vData.impl.workWidth > 0 and _showLines and (FS22_EnhancedVehicle.track.showLines == 1 or FS22_EnhancedVehicle.track.showLines == 4) then

-- for debuging headland detection trigger
-- if self.vData.hlx ~= nil and self.vData.hlz ~= nil then
Expand Down Expand Up @@ -1124,7 +1128,7 @@ function FS22_EnhancedVehicle:onDraw()
end -- <- end of draw snap to direction lines

-- draw our tracks
if self.vData.opMode == 2 and self.vData.track.isCalculated and _showLines then
if self.vData.opMode == 2 and self.vData.track.isCalculated and _showLines and (FS22_EnhancedVehicle.track.showLines == 1 or FS22_EnhancedVehicle.track.showLines == 3) then
-- calculate track number in direction left-right and forward-backward
-- with current track orientation
local dotLR = dx * -self.vData.track.origin.dZ + dz * self.vData.track.origin.dX
Expand Down Expand Up @@ -1630,6 +1634,10 @@ function FS22_EnhancedVehicle:onActionCall(actionName, keyStatus, arg4, arg5, ar
end
self.vData.opMode = 0
end
elseif actionName == "FS22_EnhancedVehicle_SNAP_LINES_MODE" then
FS22_EnhancedVehicle.track.showLines = FS22_EnhancedVehicle.track.showLines + 1
if FS22_EnhancedVehicle.track.showLines > 4 then FS22_EnhancedVehicle.track.showLines = 1 end
lC:setConfigValue("track", "showLines", FS22_EnhancedVehicle.track.showLines)
elseif actionName == "FS22_EnhancedVehicle_SNAP_ONOFF" then
-- steering angle snap on/off
if not self.vData.is[5] then
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ License: https://creativecommons.org/licenses/by-nc-sa/4.0/
| <kbd>R Shift</kbd>+<kbd>Home</kbd> | change operational mode (snap to direction or snap to track) |
| <kbd>R Ctrl</kbd>+<kbd>Num 1</kbd> | re-calculate working width (e.g. spraying width changed) |
| <kbd>R Ctrl</kbd>+<kbd>Num 2</kbd> | re-calculate track layout (e.g. direction changed or working width changed) |
| <kbd>R Ctrl</kbd>+<kbd>Num 3</kbd> | cycle through the different show lines modes |
| <kbd>R Ctrl</kbd>+<kbd>Num *</kbd> | cycle through the different headland modes |
| <kbd>R Shift</kbd>+<kbd>Num /</kbd><kbd>Num *</kbd> | cycle through headland distances |
| <kbd>R Ctrl</kbd>+<kbd>Num 4</kbd> | decrease the number of turnover tracks |
Expand Down
4 changes: 4 additions & 0 deletions modDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<action name="FS22_EnhancedVehicle_SNAP_OPMODE" />
<action name="FS22_EnhancedVehicle_SNAP_CALC_WW" />
<action name="FS22_EnhancedVehicle_SNAP_GRID_RESET" />
<action name="FS22_EnhancedVehicle_SNAP_LINES_MODE" />
<action name="FS22_EnhancedVehicle_SNAP_TRACK" axisType="FULL"/>
<action name="FS22_EnhancedVehicle_SNAP_TRACKP" axisType="FULL"/>
<action name="FS22_EnhancedVehicle_SNAP_TRACKW" axisType="FULL"/>
Expand Down Expand Up @@ -74,6 +75,9 @@
<actionBinding action="FS22_EnhancedVehicle_SNAP_GRID_RESET">
<binding device="KB_MOUSE_DEFAULT" input="KEY_rctrl KEY_KP_2" axisComponent="+" inputComponent="+" index="1"/>
</actionBinding>
<actionBinding action="FS22_EnhancedVehicle_SNAP_LINES_MODE">
<binding device="KB_MOUSE_DEFAULT" input="KEY_rctrl KEY_KP_3" axisComponent="+" inputComponent="+" index="1"/>
</actionBinding>
<actionBinding action="FS22_EnhancedVehicle_SNAP_TRACK">
<binding device="KB_MOUSE_DEFAULT" input="KEY_rctrl KEY_KP_4" axisComponent="-"/>
<binding device="KB_MOUSE_DEFAULT" input="KEY_rctrl KEY_KP_6" axisComponent="+"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_cs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: 将捕捉/轨迹方向减少90°"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: (重新)计算轨迹显示"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: 增加周转轨道的数量"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: 减少周转轨道的数量"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: 向右移动轨迹"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="可见轨迹数"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="总共显示多少条轨道(车辆左侧+右侧)"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="自动隐藏线"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="指定是否自动隐藏辅助线和轨迹线"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="隐藏线之前的时间"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_cz.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: Ubrat 90°"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: Resetovat mřížku"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Zvýšit počet obřádků pro otočku"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Snížit počet obřádků pro otočku"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Přesunout řádek doprava"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Počet viditelných řádků"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="Kolik řádků se celkem zobrazí (vlevo + vpravo od vozidla)"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Automaticky skrýt čáry"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Určuje, zda se mají automaticky skrýt pomocné a vodicí čáry"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Doba zobrazení čar"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_de.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: Fahrtrichtung/Fahrspur verringern um 90°"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: Arbeitsbreite neu berechnen"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: Fahrspuren (neu) berechnen/ausrichten"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Anzeigemodus der Linien wechseln"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Anzahl Wende-Fahrspuren erhöhen"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Anzahl Wende-Fahrspuren verringern"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Fahrspuren nach rechts verschieben"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Anzahl sichtbare Fahrspuren"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="Soviele Fahrspuren werden insgesamt (links + rechts vom Fahrzeug) angezeigt"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Zeige Linien"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Legt fest, welche Art von Linien angezeigt werden"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="Alle"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="Keine"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Nur Fahrspuren"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Nur Fahrzeug + Arbeitsbreite"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Linien automatisch ausblenden"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Legt fest, ob die Hilfs- und Fahrspurlinien automatisch ausgeblendet werden"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Zeit bis zum Linien ausblenden"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: (Re)calculate track layout"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Increase amount of turnover tracks"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Decrease amount of turnover tracks"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Move tracks to the right"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_2" text="EV: Move tracks to the left"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Number of visible tracks"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="How many tracks are shown in total (left + right of vehicle)"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Hide lines automatically"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Specifies whether to automatically hide auxiliary and track lines"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Time until lines are hidden"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_fr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: Diminuer la direction de 90°"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: (Ré)initialiser la grille"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Incrémenter le saut de ligne"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Décrémenter le saut de ligne"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Déplacer le tracé vers la droite"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Nombre de lignes visibles"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="Nombre de lignes visibles à gauche et à droite du véhicule"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Cacher les lignes automatiquement"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Spécifier de quelle façon cacher les lignes principales et secondaires"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Délai avant le masquage des lignes"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_it.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: Decrementa la direzione di marcia/corsia di 90 °"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: Riallineare le corsie"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Aumenta il numero di corsie di svolta"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Riduci il numero di corsie di svolta"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Sposta corsia a destra"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Numero di corsie visibili"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="Questo è il numero di corsie visualizzate in totale (sinistra + destra del veicolo)"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Nascondi automaticamente le linee"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Specifica se nascondere automaticamente le linee ausiliarie e guida"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Tempo di visualizzazione delle linee"/>
Expand Down
8 changes: 8 additions & 0 deletions translations/translation_pl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<text name="input_FS22_EnhancedVehicle_SNAP_ANGLE3_2" text="EV: Zmniejsz kierunek przyciągania/ścieżki o 90°"/>
<text name="input_FS22_EnhancedVehicle_SNAP_CALC_WW" text="EV: (Re)calculate working width"/>
<text name="input_FS22_EnhancedVehicle_SNAP_GRID_RESET" text="EV: (Ponownie) oblicz wyświetlanie ścieżki"/>
<text name="input_FS22_EnhancedVehicle_SNAP_LINES_MODE" text="EV: Change display mode of lines"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_1" text="EV: Zwiększ ilość ścieżek obrotu"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACK_2" text="EV: Zmniejsz ilość ścieżek obrotu"/>
<text name="input_FS22_EnhancedVehicle_SNAP_TRACKP_1" text="EV: Przesuń ścieżki w prawo"/>
Expand Down Expand Up @@ -101,6 +102,13 @@
<text name="ui_FS22_EnhancedVehicle_visibleTracksTitle" text="Liczba widocznych ścieżek"/>
<text name="ui_FS22_EnhancedVehicle_visibleTracksTT" text="Ile ścieżek jest pokazanych łącznie (lewa + prawa strona pojazdu)"/>

<text name="ui_FS22_EnhancedVehicle_showLinesTitle" text="Show lines"/>
<text name="ui_FS22_EnhancedVehicle_showLinesTT" text="Specifies which kind of lines are shown"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption1" text="All"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption2" text="None"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption3" text="Tracks only"/>
<text name="ui_FS22_EnhancedVehicle_showLinesOption4" text="Vehicle+working width only"/>

<text name="ui_FS22_EnhancedVehicle_hideLinesTitle" text="Hide lines automatically"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesTT" text="Specifies whether to automatically hide auxiliary and track lines"/>
<text name="ui_FS22_EnhancedVehicle_hideLinesAfterTitle" text="Time until lines are hidden"/>
Expand Down
Loading

0 comments on commit fdfbd21

Please sign in to comment.