[Ace] How to move the command window?

● ARCHIVED · READ-ONLY
Started by VixenOfTheStars 3 posts View original ↗
  1. I'm creating a custom title screen and i need to move the command window to

    the right. Any help?
  2. On Scene_Title at line 91

    Just set the x,y coordinate of @command_window

    For example

    @command_window.x = 0@command_window.y = 110Just do as you wish
  3. That helped alot! Thanks!