v2.1.1
What's Changed
18 changed files with 445 additions and 141 deletions : 2.1...2.1.1
Major Updates
- fix #245 ask like doc by @theludovyc in #250
- 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 correct
answer=?"question"
is also correct- But you should respect spaces between tag, question, and default answer
answer=?tag "question" "default answer"
is correct
answer=?tag"question""default answer"
is not
- fix #243 be threads safe by @theludovyc in #252
Now Rakugo is threads safe, and signals are called correctly. So you will not have errors in the last godot version (4.1).
Other Changes
- Some fixes by @theludovyc in #241
- update project.godot to 4.1
- and other things...
- My Fixes for 2.1.1 #244 by @Jeremi360 in #246
- update project name, addon name and version
- add icon to the godot project
- and other things...
- Removed unsed code form Rakugo by @Jeremi360 in #249
- fix #242 add full doc example by @theludovyc in #247