https://seo-a-nam.itch.io/radiobuttongroup-plugin-for-renpy/devlog/820170/update...
Hi, Just letting you know, improvement plan on this tool's announced here!
I will update this tool to be very seamless integrated within Ren'Py narrative flow. Before, It required separated screen with RadioButton Python class, which could be pretty hassle or confusing.
However, now i got some knowledge on renpy CDD so now i aim to make them like all-in-one Displayable for easy use.
Like the example below.
screen multi_selection1(max = 1, selectedItems): choice_groups(max): button1: imagebutton 'dog' ... button2: imagebutton 'cat' ....
and this is the expected usage.
"start" $ selectedItems = renpy.call_screen(multi_selection1, max=2) "This is the result [selectedItems]"