-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.config
56 lines (50 loc) · 1.16 KB
/
game.config
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
46
47
48
49
50
51
52
53
54
55
56
window
{
title = Platformer
width = 1280
height = 720
fullscreen = false
vsync = true
}
gamepad
{
form = res/ui/gamepad.form
}
aliases
{
res/textures = res/textures
res/textures/gamepad = res/textures/gamepad.png
res/textures/enemy = res/textures/enemy.png
res/textures/options = res/textures/options.png
res/textures/tiles = res/textures/tiles.png
res/textures/enemies = res/textures/enemy.png
res/textures/player = res/textures/player.png
res/textures/screen = res/textures/screen.png
res/textures/bg = res/textures/bg.png
res/textures/interactables = res/textures/interactables.png
res/textures/collectables = res/textures/collectables.png
res/textures/water = res/textures/water.png
res/textures/water-noise = res/textures/water-noise.png
}
boot
{
textures
{
@res/textures/screen
}
spritesheets
{
res/spritesheets/screen.ss
}
level = res/levels/0.level
}
properties_directories
{
res/audio = true
res/gameobjects = false
res/levels = false
res/parallax = false
res/physics = true
res/scenes = false
res/spritesheets = false
}