Increasing/Moving the World Map Window
Posted: Tue Feb 16, 2021 3:57 am
by Marioman2007
An experiment I did, My result:
Is there a way to Increase/move the world map window?
Re: Increasing/Moving the World Map Window
Posted: Tue Feb 16, 2021 4:06 am
by Emral
With some difficulty.
You can call this from map.lua:
Graphics.activateOverworldHud(WHUD_NONE) to disable the border and draw your own hud in its place. This will give you an 800x600 canvas to work with.
You can then prooobably also move the camera in lunalua's onDraw function to offset the viewport relative to the player... though I'm not 100% sure on that.
Re: Increasing/Moving the World Map Window
Posted: Tue Feb 16, 2021 4:14 am
by Marioman2007
Thank You