godot-yaml's icon

godot-yaml 0.9.3 Misc 3.4 Community

Submitted by user Beliar; MIT; 2022-04-01

Adds the ability to print and parse variables to and from yaml.

Usage:

Since this is a godot native plugin, you first need to (pre)load it like this:

```
yaml = preload("res://addons/godot-yaml/gdyaml.gdns").new()
```

After this the basic usage is like for JSON:

To convert a value to a yaml string you need to use the print method, like this:

```
var yamlstring = yaml.print(1.0)
```

The parse method takes a yaml formatted string and tries to convert it into a godot variable. It returns a JSONParseResult.

```
var value = yaml.parse(yamlstring).result
```

If it cannot convert the string it will give an error message with information why it could not convert something and the position inside the string where it failed.


View files Download Submit an issue Recent Edits