Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I'm really excited to give this one a try-- thank you for such a cool tool!!

Thank you for your comment! It's greatly appreciated. I'll do my best to continue making further improvements or providing any other practical tools you might need

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]"