File tree Expand file tree Collapse file tree 4 files changed +60
-0
lines changed
Documentation/API/Parsers Expand file tree Collapse file tree 4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -34,3 +34,18 @@ int main()
34
34
return 0;
35
35
}
36
36
```
37
+
38
+ ##### Godot
39
+
40
+ ``` gdscript
41
+ extends Node
42
+
43
+ func _ready() -> void:
44
+
45
+ var file = FileAccess.open("res://song.txt", FileAccess.READ)
46
+ var content = file.get_as_text()
47
+
48
+ var sections = rhythm_game_utilities.parse_sections_from_chart(content)
49
+
50
+ print(sections)
51
+ ```
Original file line number Diff line number Diff line change @@ -540,6 +540,21 @@ int main()
540
540
}
541
541
```
542
542
543
+ ##### Godot
544
+
545
+ ``` gdscript
546
+ extends Node
547
+
548
+ func _ready() -> void:
549
+
550
+ var file = FileAccess.open("res://song.txt", FileAccess.READ)
551
+ var content = file.get_as_text()
552
+
553
+ var sections = rhythm_game_utilities.parse_sections_from_chart(content)
554
+
555
+ print(sections)
556
+ ```
557
+
543
558
#### ` Parsers.ParseTimeSignaturesFromChartSection `
544
559
545
560
> Languages: ` C# ` ` C++ `
Original file line number Diff line number Diff line change @@ -540,6 +540,21 @@ int main()
540
540
}
541
541
```
542
542
543
+ ##### Godot
544
+
545
+ ``` gdscript
546
+ extends Node
547
+
548
+ func _ready() -> void:
549
+
550
+ var file = FileAccess.open("res://song.txt", FileAccess.READ)
551
+ var content = file.get_as_text()
552
+
553
+ var sections = rhythm_game_utilities.parse_sections_from_chart(content)
554
+
555
+ print(sections)
556
+ ```
557
+
543
558
#### ` Parsers.ParseTimeSignaturesFromChartSection `
544
559
545
560
> Languages: ` C# ` ` C++ `
Original file line number Diff line number Diff line change @@ -540,6 +540,21 @@ int main()
540
540
}
541
541
```
542
542
543
+ ##### Godot
544
+
545
+ ``` gdscript
546
+ extends Node
547
+
548
+ func _ready() -> void:
549
+
550
+ var file = FileAccess.open("res://song.txt", FileAccess.READ)
551
+ var content = file.get_as_text()
552
+
553
+ var sections = rhythm_game_utilities.parse_sections_from_chart(content)
554
+
555
+ print(sections)
556
+ ```
557
+
543
558
#### ` Parsers.ParseTimeSignaturesFromChartSection `
544
559
545
560
> Languages: ` C# ` ` C++ `
You can’t perform that action at this time.
0 commit comments