OK. But what should I do to solve this problem, this is why I need a german speaking person I need to understand, where to do, what i must do, why I must do it and how I must do it.
edit: the patreonbutton is there but it is nailed to the navigation.
How can i switch to a free positoning at the main_menu?
I have defined the Images (myimagedefines.rpy)
#----------------------------Patreon Link---------------------------------------
image patreon_link = "/patreon_link/patreon_link.png"
image patreon_link_hover = "/patreon_link/patreon_link_hover.png"
I have defined the imagebutton (myscreens.rpy)
screen patreon():
imagebutton:
idle "patreon_link"
hover "patreon_link_hover"
action OpenURL("
You must be registered to see the links
")
xalign 0.99
yalign 0.0
The section in the main and game screens is:
################################################################################
## Main and Game Menu Screens
################################################################################
## Navigation screen ###########################################################
##
## This screen is included in the main and game menus, and provides navigation
## to other menus, and to start the game.
screen navigation():
vbox:
style_prefix "navigation"
xpos gui.navigation_xpos
yalign 0.5
spacing gui.navigation_spacing
if main_menu:
textbutton _("Start") action Start()
else:
textbutton _("History") action ShowMenu("history")
textbutton _("Save") action ShowMenu("save")
textbutton _("Load") action ShowMenu("load")
textbutton _("Preferences") action ShowMenu("preferences")
if _in_replay:
textbutton _("End Replay") action EndReplay(confirm=True)
elif not main_menu:
textbutton _("Main Menu") action MainMenu()
textbutton _("About") action ShowMenu("about")
if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")):
## Help isn't necessary or relevant to mobile devices.
textbutton _("Help") action ShowMenu("help")
if renpy.variant("pc"):
## The quit button is banned on iOS and unnecessary on Android and
## Web.
textbutton _("Quit") action Quit(confirm=not main_menu)
imagebutton:
idle "patreon_link"
hover "patreon_link_hover"
action OpenURL("
You must be registered to see the links
")
xalign 0.3
yalign 0.99
style navigation_button is gui_button
style navigation_button_text is gui_button_text
style navigation_button:
size_group "navigation"
properties gui.button_properties("navigation_button")
style navigation_button_text:
properties gui.button_text_properties("navigation_button")
can I define position of the button with Xalign and yalign or must/can I switch to xpos and y pos