Search found 11 matches

by Rabby
Wed Oct 05, 2022 10:08 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy Sprite Sizes And Dpi?
Replies: 1
Views: 467

Renpy Sprite Sizes And Dpi?

I know the sprites should be around 85-90% of the screen resolution but what size should I draw the sprites inside of an art program? I'm planning to do them in a layered fashion. Does DPI matter or should I stick with 72?
by Rabby
Tue May 10, 2022 5:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Trying to make a progressive menu
Replies: 3
Views: 325

Trying to make a progressive menu

Trying to make a menu that will have a new choice appear if all three questions are chosen but if they pick the rude one they get sent back to a different label and lose points instead of going through the rest. label pickagain: define triple = set() menu: set triple "How tall are you?": j...
by Rabby
Sat Jan 29, 2022 4:56 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] not a button defined in this gallery error
Replies: 7
Views: 431

Re: [Question] not a button defined in this gallery error

Ended up changing the format for the gallery, I'll throw it here In case if someone needs it #ex of defintion make the amount you need g= Gallery() g.button("ending1e") g.condition("persistent.unlock_1w") g.image("locked") screen ofic_gallery(): # Ensure this replaces t...
by Rabby
Sat Jan 29, 2022 12:15 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] not a button defined in this gallery error
Replies: 7
Views: 431

Re: [Question] not a button defined in this gallery error

I have a second gallery and they both have the same gallery definition although I've tried changing it and that doesn't work either.
by Rabby
Fri Jan 28, 2022 12:30 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] not a button defined in this gallery error
Replies: 7
Views: 431

Re: [Question] not a button defined in this gallery error

screen 2_Gallery(): tag menu grid 2 3: xfill True yfill True add g.make_button("ending1", "locked.png", xalign=0.5, yalign=0.5) add g.make_button("ending2", "locked.png", xalign=0.5, yalign=0.5) add g.make_button("ending3", "locked.png", x...
by Rabby
Fri Jan 28, 2022 4:34 am
Forum: Ren'Py Questions and Announcements
Topic: Character colors stuck
Replies: 1
Views: 539

Re: Character colors stuck

Is the statement written out correctly?

Try

Code: Select all

define y = Character(_("You"),color="#9A6AEC")
Or maybe

Code: Select all

define y = Character("[you]"),color="#9A6AEC")
by Rabby
Fri Jan 28, 2022 2:52 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] not a button defined in this gallery error
Replies: 7
Views: 431

[Solved] not a button defined in this gallery error

I keep getting an error that the first button in the list isn't defined, I can't quite tell why init python: g = Gallery() g.button("ending1") g.condition("persistent.unlock_1w") g.image("locked") g.button("ending2") g.condition("persistent.unlock_2w"...
by Rabby
Tue Jan 25, 2022 12:13 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Trying to make a clicker timed event you can't win
Replies: 3
Views: 380

Re: [question] Trying to make a clicker timed event you can't win

It's having an issue of stop float being given a default twice
by Rabby
Mon Jan 24, 2022 1:37 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Trying to make a clicker timed event you can't win
Replies: 3
Views: 380

[Solved] Trying to make a clicker timed event you can't win

I've been trying to code an event you can't win that stops when you stop clicking your mouse, similar to button mashing but clicking