Question about the menu layout

Was wondering if anyone with more modding/coding experience have tried to tilt their menu layout? Was able to center it to make it easier for forging, but struggling to tilt it right.

2 Likes

Here’s my patch. Should be pretty self explanatory but just ask if anything is unclear. Be aware though that some things (mainly items) will look weird because they were made for an angled menu :wink:

{
  "description": "Set menu angles to 0",
  "author": "Grimdian",
  "targets": [
    {
      "file": "assets/gui/layouts/common/constants.json",
      "patch": [
        {
          "op": "replace",
          "path": "$.stdMenuAngle",
          "value": 0
        }
      ]
    },
    {
      "file": "assets/gui/layouts/objectives.json",
      "patch": [
        {
          "op": "replace",
          "path": "$.objects.[?(@.name == 'objectivesRoot')].scope.menuAngle",
          "value": "[[stdMenuAngle]]"
        }
      ]
    }
  ]
}
1 Like