Skip to content

Rakugo Dialogue System Support

Note

First you need to have installed and enabled Godot RDS addon. RDS addon works only in Runtime mode.

This allows to use RakuVars in side text. RakuVars can be used with one of this nodes:

Note

See how to configure AdvancedText Nodes.

text-nodes

First you have to crate a GDScript or RakuScript that defines some RakuVariables.

text-scene

Look at node Inspector, to text add whit choosen RakuVars in <>, for example <some_var> , you can use RakuVars in text tags:

Note

Current way RDS uses very raw way of converting RakuVars values to strings. Because of this to use color in text like in example below there is need to use workaround: GDScript Rakugo.set_variable("test_color", "#" + Color(1, 0.5, 1))

text-inspector

Now RakuVars are in your scene:

addon-in-action