stijnwop / guidanceSteering

Guidance Steering (AutoTrack) for Farming Simulator 22.
381 stars 94 forks source link

Ability to Move Position of the New HUD Icons on Screen #195

Closed cwattyeso closed 2 years ago

cwattyeso commented 5 years ago

When using a custom GUI Scale in game and some mods which add additional icons or information to the hud, the new icons with the latest version of GPS can overlap the current icons and information of other things on the screen.

fsScreen_2019_09_09_15_32_58

It'd be nice to have an option somewhere within the Guidance Steering Mod to be able to adjust the position of the Hud Icons, to eliminate conflicts with other mods, or better allow players to customise their Hud in game.

Alternatively if user customising or moving of the Guidance Steering Icons can't be implemented, possibly look at an alternative to moving the icons to the left hand side of the screen, away from the other Hud Elements.

cwattyeso commented 5 years ago

For a quick solution, if I wanted to move the icon positions for my own gameplay, which file within the mod folder and which lines would I need to edit to do so?

BullFlag commented 3 years ago

I tweaked one number... no need to answer

2020-11-09 16_11_25-Farming Simulator 19

Gonimy-Vetrom commented 3 years ago

Don't hide your solution to this problem from others.

Bandesss commented 3 years ago

Ja das wäre schön, wenn ihr sagen würdet wie das geht ?`

Bandesss commented 3 years ago

Gibt es da was neues?

KITT3000 commented 3 years ago

@Bandesss https://github.com/stijnwop/guidanceSteering/blob/aacd9539f0ce146ef32ae85f3e30db057ab73096/src/gui/hud/GuidanceSteeringHUD.lua#L46

Bandesss commented 3 years ago

Bei diesem Code einfach left rein schreiben ? local rightX = 1 – g_safeFrameOffsetX Danke

KITT3000 commented 3 years ago

delete 1 -, it should look like this:

local rightX = g_safeFrameOffsetX
Bandesss commented 3 years ago

löschen , sollte es wie folgt aussehen:1 -

local rightX = g_safeFrameOffsetX

Danke versuche ich Danke hat funktoniert :)

Bandesss commented 3 years ago

delete 1 -, it should look like this:

local rightX = g_safeFrameOffsetX

Wenn ich es einfach nur Höher setzen will auf der Rechten Seite, wie mache ich das ? Danke für deine Hilfe

KITT3000 commented 3 years ago

@Bandesss add your height in parentheses https://github.com/stijnwop/guidanceSteering/blob/aacd9539f0ce146ef32ae85f3e30db057ab73096/src/gui/hud/GuidanceSteeringHUD.lua#L50 eg.

local y = self:createBox(self.uiFilename, rightX, topRightY - marginHeight + 0.1) - marginHeight
Bandesss commented 3 years ago
local y = self:createBox(self.uiFilename, rightX, topRightY - marginHeight + 0.1) - marginHeight

Super vielen Dank