Search found 5 matches
- Mon Apr 01, 2019 8:13 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Is it possible to create ios on windows?
- Replies: 4
- Views: 328
Re: Is it possible to create ios on windows?
I would say the only way to do it would be using a virtual PC that runs Mac OS. You could use the virtual PC to run xcode.
- Wed Feb 06, 2019 9:17 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Resizing image buttons
- Replies: 0
- Views: 214
Resizing image buttons
I need to resize some of the image buttons I'm using in the preferences menu. What's the best way for me to do it? screen preferences(): tag menu use game_menu(_("Options"), scroll="viewport"): hbox: xalign 0.5 vbox: spacing 50 yalign 0.5 xsize 600 box_wrap True if renpy.variant("pc"): vbox: xalign ...
- Thu Jan 17, 2019 4:26 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] How to randomly pick phrases, then change them
- Replies: 4
- Views: 428
Re: How to randomly pick phrases, then change them
That fixed it, thank you!
- Thu Jan 17, 2019 12:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] How to randomly pick phrases, then change them
- Replies: 4
- Views: 428
Re: How to randomly pick phrases, then change them
I did what you said, but it's giving me an error. default facts = ['Fact 1', 'Fact 2', 'Fact 3', 'Fact 4' # and so on ] screen loading(): add gui.loading_screen_background text "Fun fact: [randomfact]": font "gui/fonts/Milkshake.ttf" size 48 xpos 32 ypos 516 text "Chapter [CN]": font "gui/fonts/Milk...
- Wed Jan 16, 2019 1:07 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] How to randomly pick phrases, then change them
- Replies: 4
- Views: 428
[SOLVED] How to randomly pick phrases, then change them
My game is separated into chapters, so I created a fake loading screen to separate them. For the fun facts part of the loading screen, I need the game to randomly pick from the 9 facts and change them every 20 seconds. Screens aren't my strong point, so I don't really know how to go about doing that...