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
57
58
59
60
61
### Nano-9 Config
## Info
# name = "My Nano-9 Game"
# description = "Yet another platformer"
# author = "Jane Doe <jane.doe@email.com>"
# license = "MIT"
= 60
= "pico8"
= [
"vector.p8#lua",
"actor.p8#lua",
"platformer.p8#lua",
"dolly.p8#lua",
"main.lua",
]
## Screen
# [screen]
# canvas_size = [128, 128]
# screen_size = [512, 512]
## Defaults
# [defaults]
# font_size = 5
# initial_pen_color = 6
# initial_transparent_color = 7
# clear_color = 8
## Fonts
# [[font]] # 0
# path = "embedded://nano9/pico8/pico-8.ttf"
# [[font]] # 1
# path = "font.tff"
# [[font]] # 2
# default = true # The default Bevy font
## Palettes
# [[palette]] # 0
# path = "1bit-palette.png"
# [[palette]] # 1
# path = "dawn-palette.png"
## Images and sprite sheets
[[]] # 0
= "micro-platformer.p8#sprite_sheet"
# sprite_size = [8, 8]
# indexed = true # An indexed image
# [[sprite_sheet]] # 1
# path = "main-character.png"
# sprite_counts = [13, 1]
## Audio banks
[[]] #0
= "micro-platformer.p8#audio_bank"
## Maps
[[]] # 0
= "micro-platformer.p8#map"
# [[map]] # 1
# path = "map1.p8#map"