The Binding of Isaac: Rebirth

The Binding of Isaac: Rebirth

GoodTrip [Fixed]
修改小地图位置 (Change Minimap Position)
📌 修改小地图 UI 起始位置的方法

1. 找到文件
.\The Binding of Isaac Rebirth xxx\mods\goodtriprepentanceab\scripts\gtrep.lua

2. 用记事本打开,搜索:
local mmp_ltpos = Vector(100, 100)

3. 修改坐标数值
这里 (100, 100) 代表小地图 UI 的起始位置 (X, Y)。
例如可以改成:
local mmp_ltpos = Vector(225, 60)

4. 注意事项
如果修改后小地图位置仍然没有变化,可能还需要在 gtab+.lua 文件里进行相同的修改。

=======================================
📌 How to Change the Starting Position of the Minimap UI

1. Locate the file
.\The Binding of Isaac Rebirth xxx\mods\goodtriprepentanceab\scripts\gtrep.lua

2. Open with Notepad, search for:
local mmp_ltpos = Vector(100, 100)

3. Edit the coordinates
(100, 100) means the starting position of the minimap UI (X, Y).
For example, you can change it to:
local mmp_ltpos = Vector(225, 60)

4. Note
If the minimap position does not change, you may also need to edit the same line in gtab+.lua.
Last edited by Meva; 23 Sep @ 7:57am