Search found 3775 matches

by Imperf3kt
Sun Mar 26, 2023 9:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Android screen size
Replies: 3
Views: 326

Re: Android screen size

Depends. Generally you only need to edit the first few lines in gui.rpy but sometimes you'll need to regenerate the project and copy things over. Keep in mind that if you plan to release it to the public, not everyone will have the same phone screen size as you, and those with a smaller screen will ...
by Imperf3kt
Sat Mar 25, 2023 7:57 am
Forum: Ren'Py Questions and Announcements
Topic: Android screen size
Replies: 3
Views: 326

Re: Android screen size

Your phone at have a larger aspect ratio than yougui is set to display. Many phones these days are 9:18 instead of 9:16
by Imperf3kt
Mon Mar 13, 2023 6:40 pm
Forum: Ren'Py Questions and Announcements
Topic: renpy music won't play!! [SOLVED]
Replies: 12
Views: 1208

Re: renpy music won't play!!

Do you hide file extensions, or are they shown?
I've seen people often accidentally name files things like "mysong.mp3.mp3"
by Imperf3kt
Tue Mar 07, 2023 2:52 pm
Forum: General Discussion
Topic: AAB for Android Google Play
Replies: 2
Views: 1639

Re: AAB for Android Google Play

Select it as the output when building your game.
If you don't have this option you will need to update your client
by Imperf3kt
Fri Mar 03, 2023 4:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Transition out a called screen when it returns a value
Replies: 6
Views: 628

Re: Transition out a called screen when it returns a value

You could also use any other transition, such as pushmove

Code: Select all

action (Return(), PushMove(0.2, mode="pushleft"))
by Imperf3kt
Thu Mar 02, 2023 4:45 pm
Forum: Development of Ren'Py
Topic: Click and Drag Renpy
Replies: 1
Views: 1209

Re: Click and Drag Renpy

No good ones that I'm aware of, but you may benefit from the interactive developer. Press shift+D while playtesting your game. You can also access it via the console (shift+O)
by Imperf3kt
Mon Feb 27, 2023 9:19 pm
Forum: Ren'Py Questions and Announcements
Topic: How to have two instances of 'show text' simultaneously
Replies: 7
Views: 775

Re: How to have two instances of 'show text' simultaneously

Code: Select all

show text _("my text")
show text _("My other text")
with none
by Imperf3kt
Mon Feb 27, 2023 5:49 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make a "proper" splash screen :)
Replies: 10
Views: 748

Re: How to make a "proper" splash screen :)

The pre splashscreen is antiquated. It's not necessary anymore, but still there should you want it. The splash screen works as intended, you just need to create your sequence. Although this also, isn't really a true splash screen. A splash screen is so the user has something to look at while assets ...
by Imperf3kt
Sat Feb 25, 2023 1:55 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED - Multiple screens at once?
Replies: 2
Views: 332

Re: Multiple screens at once?

You need to space them out using position arguments
by Imperf3kt
Thu Feb 23, 2023 8:46 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Android SDK Installation Not Working?
Replies: 2
Views: 459

Re: Android SDK Installation Not Working?

Looks like Dropbox may be unavailable, off-line or your traffic is being routed through a bad gateway.

I recall this came up once before, a search may find results from previous posts
by Imperf3kt
Thu Feb 23, 2023 8:25 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Screen Action for Left Click
Replies: 6
Views: 541

Re: Screen Action for Left Click

Oh, sorry I misread.

You'll want to check out the keybinds
https://www.renpy.org/doc/html/keymap.html
by Imperf3kt
Wed Feb 22, 2023 7:36 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Screen Action for Left Click
Replies: 6
Views: 541

Re: Screen Action for Left Click

I would simply place a button over the entire screen, usually by using the background as the button via an image button. Make sure its zorder is below that of other buttons and UI
by Imperf3kt
Tue Feb 21, 2023 8:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange bug with timer action [solved]
Replies: 12
Views: 661

Re: Strange bug with timer action

Doesn't help with the bug, but for that use I'd suggest ATL
You can randomise the image shown.
by Imperf3kt
Tue Feb 21, 2023 6:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange bug with timer action [solved]
Replies: 12
Views: 661

Re: Strange bug with timer action

I'm not sure why there is a bug, but why are you looping a set variable every 1 second?
by Imperf3kt
Mon Feb 20, 2023 9:13 am
Forum: Ren'Py Questions and Announcements
Topic: Button focus broken with tooltips
Replies: 4
Views: 525

Re: Button focus broken with tooltips

P.S. better not use the variable name "tooltip" since it is a keyword in Renpy script language Their use here is as advised by the documentation, there's should be no issue using "tooltip" as a variable as that's what the example documentation shows to use. https://www.renpy.org...