-
Notifications
You must be signed in to change notification settings - Fork 9
Setup
The engine Setup program allows the player to customize certain game settings.
NOTE: currently a setup program is only available for Windows.
The options in the setup program are divided into two parts: common and advanced. The advanced options can be accessed by clicking the "Advanced" button.
Driver
Lets the player choose a graphics driver. Currently supported are Software renderer (the old and slower option, but the only driver that fully supports 8-bit games), Direct3D 9 and OpenGL (newer and faster drivers with hardware acceleration, but without proper palette-based effects support).
Start in a windowed mode
If checked, the game will be run in windowed mode, as opposed to fullscreen.
Fullscreen as borderless window
If checked, fullscreen will use a borderless window, keeping the current display resolution. This is preferred in modern systems.
Fullscreen mode
If Fullscreen as borderless window is unchecked, it will instead use exclusive fullscreen, and this options will let you select which resolution the display will adjust to. The list of modes depends on the graphic card and the system's capabilities.
Fullscreen scale Windowed scale
These two options determine the way the game will be scaled (when required) in fullscreen and windowed modes respectively:
-
None. (Windowed only) The game will be shown in its native resolution. Note that low-resolution games will be running in a tiny window on modern monitors, so this choice is more suitable for high-resolution games.
-
Max round multiplier. The game will be scaled up using a maximal round integer (2, 3, 4, etc) multiplier with which it still fits inside the screen.
-
Fill whole screen. The game will be stretched to fill the whole screen. Note that if the game's native aspect ratio is different from the screen's aspect ratio, the game graphics will appear deformed and indeed stretched.
-
Stretch, preserving aspect ratio. The game will be stretched to screen borders while respecting the game's native aspect ratio (width/height proportions). This ensures that the game graphics will always look correct, but the option can lead to black borders at the left & right or top & bottom sides of the screen.
Scaling method
Here the player can choose a game scaling algorithm, and the list of available filters depend on graphics driver selection. Currently OpenGL and Direct3D 9 both supports Nearest Neighbour (used more often in pixelart games) and Linear interpolation (used more often with high resolution games).
Game language
Here the player selects one of the available game translations.
Vertical sync
This option enables vertical synchronization mode, which reduces the "tearing" effect on the game graphics, but the option may decrease the game running speed.
Use 85 Hz display
This is a legacy option that sets the monitor refresh rate to 85 Hz to run the game, which eliminates flickering. However, this does not work on all monitors, and not at all on flat panel displays, which is why it is disabled by default.
Smooth scaled sprites
This option will apply anti-aliasing to scaled characters, in order to give them a smoother look after the resizing. This can slow down the game though, so it is off by default.
Render sprites at screen resolution
When enabled, characters and objects are scaled in screen pixels rather than game pixels. What this means is that when a low-resolution game is run in a larger window, the sprites will take advantage of this higher resolution and look less pixelated when scaled down. This option may be locked to a certain state by the game itself (according to author's choice), in which case the player will not be able to change it.
Audio Driver
Here the player may choose the digital audio driver, or disable digital sound completely.
Use voice pack if available
When checked, this option enables voice speech in game (where available).
Sound cache (RAM)
This is a cache for small sounds, to reduce disk access in sounds that are reused in game.
Auto lock to window
If this option is enabled, the mouse will be locked inside game window whenever the player clicks on it or switches into game. The locked mouse cannot leave the game window, making it impossible to accidentally jump out of the game by mistake (by clicking on the desktop, for example). Naturally, this option is only important if the game is run in windowed mode; when the game runs in fullscreen mode, the mouse is always locked.
Mouse speed
This slider allows the player to set up the mouse cursor speed in game. It should be noted that this parameter is only applied if the game is run in fullscreen mode.
Sprite cache (RAM) max size
This option limits the maximum amount of memory that the game will use for its sprite cache. The sprite cache is used to keep a partition of all the game sprites loaded to the memory, thus reducing loading times between rooms and preventing slowdowns during game play. Of course, higher values make the game use more memory. Usually only high-resolution games with long animations need to have this value increased.
Texture cache (VRAM) max size
Available since AGS 3.6.1.
This option limits the maximum amount of video memory that the game will use for its texture cache. The texture cache is used to keep sprites that are pushed to the GPU in video memory, and reduce the need to convert images from the sprite cache to the video memory to present them on screen. The limits here may be affected by other things in the computer that are using video memory, and GPU available memory.
Custom game saves path
When unchecked, the game will store its saved games in the default Windows folder:
C:/Users/<Username>/Saved Games/<Game Title>
.
Players may enable this option and define their own location to store
game saves.
Custom game shared data path
When unchecked, the game will store its shared files - custom
runtime data shared among all the users of this computer - in the default Windows folder:
C:/Program Data/Adventure Game Studio/<Game Title>
.
Players may enable this option and define their own location to store
these game files.
See also: Default setup (Editor Pane), Location of the configuration file on the system and options
Getting Started in AGS
Editor
- New Game templates
- Editor Preferences
- General Settings
- Default Setup
- Colours Editor
- Room Editor
- Character Editor
- Cursor Editor
- Dialog Editor
- Font Preview
- GUI Editor
- Inventory Items Editor
- View Editor
- Sprite Manager
- Music and sound
- Voice speech
- Script Modules
- System limits
- Log Panel
- Plugins
- Other Features
Engine
Scripting
- Scripting Tutorial
- Scripting Language
-
Scripting API
- Script API Overview
- Standard Constants
- Standard Enumerated Types
- Standard Types
- Game variables
- Global arrays
- Global event handlers
- repeatedly_execute / repeatedly_execute_always
- Custom dialog options rendering
- Global functions: general
- Global functions: message display
- Global functions: multimedia actions
- Global functions: palette operations
- Global functions: room actions
- Global functions: screen effects
- Global functions: wait
- AudioChannel functions and properties
- AudioClip functions and properties
- Camera functions and properties
- Character functions and properties
- DateTime functions and properties
- Dialog functions and properties
- DialogOptionsRenderingInfo functions and properties
- Dictionary functions and properties
- DrawingSurface functions and properties
- DynamicSprite functions and properties
- File functions and properties
- Game functions and properties
- GUI functions and properties
- GUI control functions and properties
- GUI Button functions and properties
- GUI InvWindow functions and properties
- GUI Label functions and properties
- GUI List Box functions and properties
- GUI Slider properties
- GUI Text Box functions and properties
- Hotspot functions and properties
- Inventory item functions and properties
- Maths functions and properties
- Mouse functions and properties
- Object functions and properties
- Overlay functions and properties
- Parser functions
- Region functions and properties
- Room functions and properties
- Screen functions and properties
- Set functions and properties
- Speech functions and properties
- String functions
- System functions and properties
- TextWindowGUI functions and properties
- ViewFrame functions and properties
- Viewport functions and properties
- Obsolete Script API
- Event Types
- Key code table
- Audio in script
Legal Notice
Getting in touch
Misc