Game Setup: Difference between revisions

From Adventure Game Studio | Wiki
Jump to navigation Jump to search
m (Game setup moved to Game Setup)
mNo edit summary
Line 1: Line 1:
[[Category:Tidbits and Snippets]]
[[Category:Tidbits and Snippets]]
The setup.exe that is created in your compiled folder along with your game executable can be used to change the screen mode (windowed/full-screen), resolution, sound, and other settings of the game engine.  
The winsetup.exe that is created in your Compiled folder along with your game executable can be used to change the screen mode (windowed/full-screen), resolution, sound, and other settings of the game engine.


320*200 is what the game engine reverts to if no config file is present. ''Even if the game is a 640x400 game'' [http://www.bigbluecup.com/yabb/index.php?topic=12787.msg153098#msg153098]
320x200 is the resolution the game engine reverts to '''if no config file is present'''. ''Even if the game is a 640x400 game!'' [http://www.bigbluecup.com/yabb/index.php?topic=12787.msg153098#msg153098]


[calling "game.exe --setup"] is all that the winsetup.exe program does.
Calling "game.exe --setup" is '''all that the winsetup.exe program does'''.

Revision as of 05:47, 10 December 2005

The winsetup.exe that is created in your Compiled folder along with your game executable can be used to change the screen mode (windowed/full-screen), resolution, sound, and other settings of the game engine.

320x200 is the resolution the game engine reverts to if no config file is present. Even if the game is a 640x400 game! [1]

Calling "game.exe --setup" is all that the winsetup.exe program does.