For anyone else who may stumble across this problem:
- find ctx.strokeRect(x + 0.5, y + 0.5, w - 1, h - 1); do ctrl+f to find strokeRect and look for this line/very similar.
- add // before the line to hide it.
- these outlines vanish for the main menu, status menu, battle, etc
I am still working on the outlines on things like: Item, Skill, Equip, Game End, etc, same for battle commands and such. When I find the lines for those, I will update here.
UPDATE
Search for :
- let colorBorder = isVisuallySelected ? mainColor : (item ? "#444" : "#333");
- let colorBorder = isVisuallySelected ? mainColor : "rgba(255, 255, 255, 0.2)";
- const borderColor = isVisuallySelected ? mainColor : "#444";
Then, change each of these to null like so:
- const borderColor = isVisuallySelected ? mainColor : null;
- let colorBorder = isVisuallySelected ? mainColor : null;
- const borderColor = isVisuallySelected ? mainColor : null;
The lines should be completely gone now. :)