-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
surge.cfg
45 lines (41 loc) · 1.25 KB
/
surge.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// Game settings
//
game
{
//
// The title of the game
//
title "Surge the Rabbit"
//
// The version of the game
// Each release of your game should have a unique version!
//
version "0.6.1.3"
}
//
// Video settings
//
video
{
//
// The size of the screen (width x height), in pixels.
//
// The default screen size used by the engine is 426x240, a common
// resolution for the standard 16:9 widescreen aspect ratio. The ubiquity
// of 16:9 displays makes 426x240 a great choice for playing retro games in
// computer monitors, televisions and mobile devices.
//
// Popular videogames of the 90s used the 4:3 aspect ratio. A good choice
// for a 4:3 retro game is 320x240.
//
// You may aim for higher resolutions. 640x360 is also a good choice for
// retro games that will be played in widescreen displays. There are many
// other standard resolutions (including HD) which you can research online.
//
// Tip: keep the default size or make an informed decision. 426x240 is a
// very good choice for retro games. If you change it, you'll most likely
// have to adapt your game.
//
screen_size 426 240
}