Search found 3 matches

by viscereye
Sat Aug 12, 2023 8:44 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Achievements appear untranslated
Replies: 1
Views: 143

Re: Achievements appear untranslated

Solved! Should've used [variable!t] :") for aname, lockdesc, unlockdesc in simple_achievement_list: if achievement.has(aname): text "{size=+5}{color=#990000}{b}[aname!t]{/b}{/color}{/size} \n {size=-3}[unlockdesc!t]{/size} \n" else: text "{color=#606060}{b}[lockdesc!t]{/b}{/color...
by viscereye
Sat Aug 12, 2023 7:05 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Achievements appear untranslated
Replies: 1
Views: 143

[Solved] Achievements appear untranslated

For some reason the achievements in my game still appear in English even when the language is set to French. Here's the code for the achievements (including the original creator's comments just in case they're relevant, though I couldn't find the solution in any of the links) : ## Achievements scree...
by viscereye
Sat Feb 18, 2023 2:32 am
Forum: Ren'Py Questions and Announcements
Topic: How to left-align choice menu buttons?
Replies: 3
Views: 460

Re: How to left-align choice menu buttons?

Code: Select all

style choice_vbox:
    xalign 0.0
    yalign 0.5
    yoffset -50

    spacing 10
Just removing the xpos from your code fixed it for me. xalign is, as per the documentation, equivalent to setting xpos and xanchor to the same value - you don't need to set xpos separately.