Skip to content

Commit 80734da

Browse files
readme issue
1 parent ec93265 commit 80734da

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

export_presets.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ custom_features=""
88
export_filter="all_resources"
99
include_filter=""
1010
exclude_filter=""
11-
export_path=".build/linux/metaballs.x86_64"
11+
export_path=".build/metaballs-linux/metaballs.x86_64"
1212
encryption_include_filters=""
1313
encryption_exclude_filters=""
1414
encrypt_pck=false
@@ -48,7 +48,7 @@ custom_features=""
4848
export_filter="all_resources"
4949
include_filter=""
5050
exclude_filter=""
51-
export_path=".build/macos/metaballs.zip"
51+
export_path=".build/metaballs-macos/metaballs.zip"
5252
encryption_include_filters=""
5353
encryption_exclude_filters=""
5454
encrypt_pck=false
@@ -151,7 +151,7 @@ custom_features=""
151151
export_filter="all_resources"
152152
include_filter=""
153153
exclude_filter=""
154-
export_path=".build/windows/metaballs.exe"
154+
export_path=".build/metaballs-windows/metaballs.exe"
155155
encryption_include_filters=""
156156
encryption_exclude_filters=""
157157
encrypt_pck=false

readme.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,12 @@ Cycle through the colours in the open folder
4545

4646
Toggle displaying the name of the palette on screen when it gets loaded.
4747

48+
`Space`:
49+
50+
Toggle fullscreen
51+
52+
`Esc`
53+
54+
Quit
55+
56+

view.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func load_palettes(folder: String) -> void:
8585
p_names.clear()
8686
var location : String = "res://palettes/%s" % folder if folder != "user" else "user://palettes"
8787
for p in DirAccess.get_files_at(location):
88-
pallettes.append(load("{0}/{1}".format([location, p])))
89-
p_names.append(p)
88+
pallettes.append(load("{0}/{1}".format([location, p.replace(".remap", "")])))
89+
p_names.append(p.replace(".remap", ""))
9090
p_index = p_index % pallettes.size()
9191
set_palette(p_index)

0 commit comments

Comments
 (0)