Posted September 25, 2023 by Jeremi
Join our Patreon to support us!
Hi everyone, here is the 19th devlog of Rakugo Project. I’m happy to announce that we fixed bugs that made Rakugo Dialogue System that made it incompatible with Godot 4.1. And unified/fixed ask statements in Rakugo Dialogue System in code and our docs.
complete changelog: https://github.com/rakugoteam/Rakugo-Dialogue-System/compare/2.1…2.1.1
- Now ask is same as the one in the documention
[var_name] = ? [character_tag] [question] [default_answer]
- Plus you can respect or not the number of space arround the ‘=’ and ‘?’
answer = ? "question"
is correctanswer=?"question"
is also correct- But you should respect spaces between tag, question, and default answer
answer=?tag "question" "default answer"
is correctanswer=?tag"question""default answer"
is not
Now Rakugo is threads safe, and signals are called correctly. So you will not have errors in the last godot version (4.1).
- update project.godot to 4.1
- and other things…
- update project name, addon name and version
- add icon to the godot project
- and other things…
This is all form us, see you next time.