Search found 3617 matches
- Fri Aug 19, 2022 12:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Problem with Textbutton Hover
- Replies: 1
- Views: 264
Re: Problem with Textbutton Hover
Are you using the textbuttons as part of a screen, or directly in your script? For example, this is incorrect, don't use screen language like this: label start: "Textbuttons are screen language, this is not a screen." "This example is incorrect." textbutton "myButton" action NullAction() return The ...
- Thu Aug 18, 2022 12:27 am
- Forum: Ren'Py Questions and Announcements
- Topic: Renpy 8.0.2 VP9 framerate issues
- Replies: 11
- Views: 832
Re: Renpy 8.0.2 VP9 framerate issues
The vp9 file appears to use a far higher quantizizer, resulting in much higher bit rate and thus higher quality footage, but also severely more demanding on system resources. Try reducing the quality of the file, or the bit rate, or increase the compression, both spacial and temporal, depending on w...
- Tue Aug 16, 2022 7:30 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] Making a variable in a screen dependent on another variable?
- Replies: 3
- Views: 307
Re: [Solved] Making a variable in a screen dependent on another variable?
One method not suggested would be to have a regular bar displayed, and layer a mask above it, so only the dots are transparent. As the bar fills, it shows through where the dots are, but nowhere else. Kind of like taking two sheets of paper, drawing on one and cutting a hole in the other then trying...
- Tue Aug 16, 2022 6:17 am
- Forum: Ren'Py Questions and Announcements
- Topic: Blinking Effect Question
- Replies: 5
- Views: 313
Re: Blinking Effect Question
you could use "on show" within the screen to add the transition.
https://www.renpy.org/doc/html/screens.html#on
https://www.renpy.org/doc/html/screens.html#on
- Tue Aug 16, 2022 4:24 am
- Forum: Ren'Py Questions and Announcements
- Topic: having issues with minigame built in pygame
- Replies: 1
- Views: 288
Re: having issues with minigame built in pygame
This is usually caused by having duplicate start labels.
Search the rpy file for any extra labels - you should only have one of any label.
Search the rpy file for any extra labels - you should only have one of any label.
- Sun Aug 14, 2022 10:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved ]How to add data to a screen from an internet source
- Replies: 5
- Views: 544
Re: How to add data to a screen from an internet source
Thanks PyTom, exactly what I needed.
A link to videos will probably suffice for a lite version. The intention was to add tutorials, which may need to be changed over time, so this will also work.
A link to videos will probably suffice for a lite version. The intention was to add tutorials, which may need to be changed over time, so this will also work.
- Sun Aug 14, 2022 6:16 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved ]How to add data to a screen from an internet source
- Replies: 5
- Views: 544
[solved ]How to add data to a screen from an internet source
I asked something similar to this years ago, but cannot find that post and cannot remember how to do this, but I want to be able to add text and images (potentially embedded videos) to a screen, based on the contents of a text file or other which is stored on a web server. My ultimate goal is to hav...
- Fri Aug 12, 2022 6:59 am
- Forum: Ren'Py Questions and Announcements
- Topic: Splashscreen using click to progress
- Replies: 6
- Views: 300
Re: Splashscreen using click to progress
There is that, but there is also the purpose of a splashscreen is not to give the user disclaimers. Splash screens are typically used by particularly large applications to notify the user that the program is in the process of loading. They provide feedback that a lengthy process is underway. Occasio...
- Thu Aug 11, 2022 4:10 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Splashscreen using click to progress
- Replies: 6
- Views: 300
Re: Splashscreen using click to progress
Don't use the splashscreen for this, instead use before_main_menu
- Wed Aug 10, 2022 4:10 pm
- Forum: Ren'Py Questions and Announcements
- Topic: When I left click after dialog has run out it send me to the main menu
- Replies: 6
- Views: 282
Re: When I left click after dialog has run out it send me to the main menu
Remember that screens need to be placed outside label flow.
The reason the game ends is because you have no more dialogue after you show the screen.
Place the screen definition outside your label and just use the show screen door action you already are, but add some dialogue after that line as well.
The reason the game ends is because you have no more dialogue after you show the screen.
Place the screen definition outside your label and just use the show screen door action you already are, but add some dialogue after that line as well.
- Mon Aug 08, 2022 7:24 am
- Forum: Ren'Py Questions and Announcements
- Topic: button to reset game
- Replies: 4
- Views: 439
Re: button to reset game
There is also the clear achievements action.
achievement.clear_all()
achievement.clear_all()
- Sat Aug 06, 2022 5:03 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Multiple projects but single keystore in rapt folder
- Replies: 1
- Views: 230
Re: Multiple projects but single keystore in rapt folder
The keystore file is used between multiple projects, it is not meant to change.
- Thu Aug 04, 2022 6:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Is the use of "Textbutton" to output a simple text to "Text"?
- Replies: 4
- Views: 258
Re: Is the use of "Textbutton" to output a simple text to "Text"?
Theres no problem doing that, a textbutton is a button with Text inside it, usually contained within some sort of container, like a frame.
- Wed Aug 03, 2022 5:39 pm
- Forum: Creator Discussion
- Topic: how do I attach multiple images in my post?
- Replies: 2
- Views: 509
Re: how do I attach multiple images in my post?
Most people use an image hosting service, such as imgur then insert the image using the BBCode for images
Note that there are image size constraints. All images must be no more than 800pixels wide
Code: Select all
[img]Link to your image[/img] Note that there are image size constraints. All images must be no more than 800pixels wide
- Wed Aug 03, 2022 1:02 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] What version of Python does Renpy 8.0.1 support?
- Replies: 2
- Views: 192