Preator281
Member
Does anyone know the number of pixels of the title box that gives you the option of new game, continue or shutdown? I want to shift it over to the bottom right corner, but I don't know what values to put because I don't know how many pixels the box is, therefore I cannot make the calculations.
I would normally just tweak things until I got something I like, but since these are scripts (which are vital to the game) I'd rather not take that chance...
That's my script. Is the number of pixels 192? or is it 160? What does the window width mean?# Make command window
s1 = "New Game"
s2 = "Continue"
s3 = "Shutdown"
@command_window = Window_Command.new(192, [s1, s2, s3])
@command_window.back_opacity = 160
@command_window.x = 320 - @command_window.width / 2
@command_window.y = 288
I would normally just tweak things until I got something I like, but since these are scripts (which are vital to the game) I'd rather not take that chance...