Hello and sorry for being back to the very basics, but here are some examples that I have some issues solving in a optimized way:
Lets say this is 3 lines of text, how would you best "box them" so they can be ordered around (as a unity) with the xalign 0.5 yalign 0.5 command?
Lets say we now have 3 different "boxed" examples of the one in the code example. How would the code look to move them 3 different boxes around on screen with box 1 on: xalign 0.5 yalign 0.5, box 2 on xalign 0.6 yalign 0.6 and box 3 on xalign 0.8 yalign 0.8
Renpy for sure lack a GUI to work in, and I am not used to work in non-GUI environment. Looking on WIKI does not help since it's zero practical examples that I understand currently. I think if I receive some guidance on the above examples in written code , then I'll understand.
Here is an example of a problem I currently have:
I need to order "stuff" like this around on the screen with impunity i.e. xalign and yalign commands. Then I at least can design 100% the way I want the screen to look like.
Now, if I could "wrap" those evil unruly lines of code in "individual" boxes that could be moved/placed with xalign and yalign commands 90% of my problems would be gone directly!
Lets say this is 3 lines of text, how would you best "box them" so they can be ordered around (as a unity) with the xalign 0.5 yalign 0.5 command?
Code:
text "This is the first line"
text "This is the second line"
text "This is the third line"
Code:
text "This is the first line"
text "This is the second line"
text "This is the third line"
Here is an example of a problem I currently have:
I need to order "stuff" like this around on the screen with impunity i.e. xalign and yalign commands. Then I at least can design 100% the way I want the screen to look like.
Code:
vbox:
label _('Display')
textbutton _('Window') action Preference('display', 'window') style_suffix 'warn_button'
textbutton _('Fullscreen') action Preference('display', 'fullscreen') style_suffix 'warn_button'
Code:
vbox:
label _("Rollback Side")
textbutton _("Disable") action Preference("rollback side", "disable")
textbutton _("Left") action Preference("rollback side", "left")
textbutton _("Right") action Preference("rollback side", "right")