I'm trying to make the character status screen horizontal like FF13's one. I went about it by changing:
self.x, self.y, self.z = -512, @actor.index * 120, 999
self.y = @actor.index*120 unless self.active
to
self.x, self.y, self.z = -512, @actor.index * 1, 999
self.x = @actor.index*120 unless self.active
along with INPUTS::DOWN/UP to INPUTS::RIGHT/LEFT so that I can scroll left to right.
However, when I press CANCEL to exit, all the windows disappear and the entire menu screen shifted slightly to the left, leaving only the frozen main background image I have set and I'm stuck in the menu and can't go back to the map. It's totally fine when I leave it as:
self.y = @actor.index*120 unless self.active
but it makes the character status selection vertical
How do I go about it so that I can fix this issue? I know it has to do with the x and y adjustments, but I can't pinpoint which lines.
Thank you.