Drawing icons instead of arrows in the Parameter comparison boxes.

● ARCHIVED · READ-ONLY
Started by Weremole 2 posts View original ↗
  1. I've searched high and low for a way to change these somehow and I find no solution. It even seems the symbols themselves are hardwired into the source code now.
  2. Code:
    Window_EquipStatus.prototype.drawRightArrow = function(x, y) {
        this.changeTextColor(this.systemColor());
        this.drawText('\u2192', x, y, 32, 'center');
    };

    rpg_windows:2315