Ren'Py Patreon icon in the main menu

Black Ram oss

Black Ram
Game Developer
May 10, 2018
582
1,549
I would like to add an icon in the main menu next to the name of the game which leads to a link.
I know I have to edit screens, I believe in this point:
Python:
    ## The use statement includes another screen inside this one. The actual
    ## contents of the main menu are in the navigation screen.
    use navigation

    if gui.show_name:

        vbox:
            text "[config.name!t]":
                style "main_menu_title"

            text "[config.version]":
                style "main_menu_version"
If anyone has graphic advice, I gladly accept it.

Maybe it's a somewhat stupid question but it made me waste a lot of time.