Godot TOML Parser 1.01 Misc 3.6 Community
Submitted by user benichi; MIT; 2025-01-03
A Godot TOML parser for Godot 3.x
Usage
```
var toml = TOMLParser.new() # Define the parser in your script
var file = toml.parse("res://file.toml") # Load your TOML file from a specified path
# After that, it behaves exactly like a dictionary
print(file["variable"])
```
Current Issues
-Octal and binary numbers aren't supported
-Complex Date-time (eg. 1979-05-27T00:32:00.999999-07:00) isn't valid
-Multi-lined strings can't start on a new line
-Multi-lined arrays aren't supported
View files Download Submit an issue Recent Edits