• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Changing the position of the Game Screen on Launch

Bowlstir

Media Arts and Game Development
199
Posts
16
Years
  • So I made the size of the game larger, and I need to change the position of the window, specifically up and to the left so the top left corner of the game is in the top left corner of the computer.

    Thanks,

    Bowlstir
     
    119
    Posts
    10
    Years
    • Seen Sep 1, 2023
    If you want the game to always start up in the top left corner of the screen, on any computer, regardless of the screen size, then do the following:
    - In Win32API_ find "return Rect.new(x,y,width-x,height-y)" and replace it by "return Rect.new(0,0,width-x,height-y)"
     
    Back
    Top