We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec8d21 commit 7729442Copy full SHA for 7729442
assets/levels.json
@@ -0,0 +1,6 @@
1
+{
2
+ "BUBBLE SORT":
3
+ {
4
+ "about": "Bubble sort is a simple sorting algorithm, typically the first taught in introductory computer science classes."
5
+ }
6
+}
levels.json
scripts/levels.gd
@@ -4,7 +4,7 @@ var levels
func _ready():
var descriptions = File.new()
7
- descriptions.open("res://levels.json", descriptions.READ)
+ descriptions.open("res://assets/levels.json", descriptions.READ)
8
levels = parse_json(descriptions.get_as_text())
9
var first = true
10
for level in levels:
0 commit comments