text
stringlengths
0
40.9k
label
stringlengths
5
23
dataType
stringclasses
2 values
communityName
stringlengths
5
23
datetime
stringclasses
32 values
Well, if you want to brute force it you can just... Skip the if entirely, create 100 labels and name them 'condition1', 'condition2', 'condition3' and so forth and instead of doing an if, you just do jump 'condition[number]'. Not sure what the right syntax would be for it and I can't be arsed to find it rn but it shoul...
r/renpy
comment
r/RenPy
2024-17-08
Alternatively, if it's just one line, you could store them in an array and randomly access one using the random index and pass it to the say screen. Speaker array[random_number]
r/renpy
comment
r/RenPy
2024-17-08
label start: $ random_number = str(renpy.random.randint(1, 3)) $ renpy.jump("".join(['option', random_number])) return label option1: 'this is option 1' label option2: 'this is option 2' label option3: 'this is option 3'
r/renpy
comment
r/RenPy
2024-17-08
$ options = [ 'this is option 1','this is option 2','this is option 3' ] $ random_number = renpy.random.randint(0, 2) e "[options[random_number]]"
r/renpy
comment
r/RenPy
2024-17-08
Hi everyone! For my game, I want quite a couple features where it involves a counter being increased or decreased (or changed). I want the points to be on the screen and change when the variable is changed, but specifically on the png that I've designed specifically for the points. How can I do this? https://preview....
r/renpy
post
r/RenPy
2024-14-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-14-08
You have to define a variable and a screen like this: default points = 0 screen points_display: add "yourimage": #add your png here xpos 10 position of png on x-axis ypos 10 #position of png on y-axis text "Score:\n[points]": #input the variable here ## \n creates a newline...
r/renpy
comment
r/RenPy
2024-14-08
What you can do is make a custom python class and define the scoped variable there with a init, add, subtract, and update. The numbers themselves. You will have to make an object library you can do, numbers: [number: 0, img: url], basically a dictionary, and show image using $ renpy functions So basically a class w...
r/renpy
comment
r/RenPy
2024-14-08
Just wanted to add to your comment (in case OP doesn’t know how to do what needs to be done next). start: show screen points_display And then in order to increase the points, do this: $ points += 1 And to decrease it, do this: $ points -= 1
r/renpy
comment
r/RenPy
2024-14-08
thank you so much, this worked perfectly! and thank you to TropicalSkiFly too for explaining what to do next. very much appreciated!
r/renpy
comment
r/RenPy
2024-15-08
r/renpy
post
r/RenPy
2024-14-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-14-08
Use different extension of video.
r/renpy
comment
r/RenPy
2024-14-08
i try this $ renpy.movie\_cutscene("images/video/movie.webm", size=(1280,720)) then TypeError: movie\_cutscene() got an unexpected keyword argument 'size' I'm not sure, I understand correctly.
r/renpy
comment
r/RenPy
2024-14-08
I said different extension of video not (1280,720). Not .webm, .mp4 Also don't include the path to the video in code, renpy finds by itself by only matching this name.
r/renpy
comment
r/RenPy
2024-14-08
\*I'm sorry for misunderstanding $ renpy.movie\_cutscene("movie") OSError: Couldn't find file 'movie'. (I have video​ file in the "images" folder).
r/renpy
comment
r/RenPy
2024-14-08
Does it solves?
r/renpy
comment
r/RenPy
2024-14-08
Umm.. no.
r/renpy
comment
r/RenPy
2024-14-08
https://www.renpy.org/doc/html/movie.html I tried my best so here docs
r/renpy
comment
r/RenPy
2024-14-08
Maybe try having it in game folder only, so that you don’t have to type in the file path. My video code looks like this: $ renpy.movie_cutscene(“video_file.webm”) The .webm video file works for me, but not .mp4 I guess play with different video file extensions as well.
r/renpy
comment
r/RenPy
2024-14-08
does the actual renpy verison just not work? play movie "images/video/movie.webm" I use .webm and it works so i got no idea what the other guy is saying.
r/renpy
comment
r/RenPy
2024-14-08
Ohh god! it work!, Thank you so much.
r/renpy
comment
r/RenPy
2024-14-08
My pleasure! I’m glad it fixed the issue you were experiencing! 😄
r/renpy
comment
r/RenPy
2024-14-08
Just delete the "images" part in your definition, because RenPy already starts in this folder. You could also use this if you want to use the scene mor often: Define it with: image \[video\_name\] = Movie(play="video/movie.webm", loop=\[True/False\], start\_image="video/movie\_start.webp") ((The start\_image is the...
r/renpy
comment
r/RenPy
2024-15-08
I wanna fade music from one track to another. is it possible to fade the first track out and the second track in at the same time. if so, how? and can it be done as simple as for example: play music "music/file_1.mp3" "text" next music "music/file_2.mp3" crossfade 0.5 cuz right now i'v...
r/renpy
post
r/RenPy
2024-14-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-14-08
read this post [https://www.reddit.com/r/RenPy/comments/197he9s/crossfade\_music\_in\_renpy/](https://www.reddit.com/r/RenPy/comments/197he9s/crossfade_music_in_renpy/)
r/renpy
comment
r/RenPy
2024-14-08
ey, thanks mate
r/renpy
comment
r/RenPy
2024-15-08
you're welcome good luck with your project
r/renpy
comment
r/RenPy
2024-15-08
What I'm looking for is a way to audit which files are in use so I can delete the rest and optimize game size, without having to go through every .rpy file and search for it manually. Is there a way to get such information? or just by creating a distro the game discards files that are not linked in the code? Sorry if t...
r/renpy
post
r/RenPy
2024-14-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-14-08
The best way is to remove files as you remove them from the game, and only add files as you add them. You're far past that. RenPy, despite being pretty user friendly, is not actually user friendly in that it will not stop you from doing all kinds of crazy stuff - as such, there's no real way to build a universal tool...
r/renpy
comment
r/RenPy
2024-14-08
Thank you for the prompt and concise response. I'm almost half way into manually adding to the game the files it requires.
r/renpy
comment
r/RenPy
2024-14-08
You can use lint. It won't find everything but it's quite good with finding missing images etc..
r/renpy
comment
r/RenPy
2024-14-08
It's a useful lesson to learn. Keep your projects clean and uncluttered. Ren'Py builds the distribution with whatever files you've added to the project structure. Now, since you seem to be unsure of exactly which files you need -- something I, personally, find kind of hard to fathom -- you'll want to be sure to give yo...
r/renpy
comment
r/RenPy
2024-15-08
Hi there! New guy, hoping I'm not posting in the wrong place... So, here's the deal; I'm not actually making my own renpy game (right now), instead, I'm modding someone else's game (a NSFW one, so I'm not really sure that I can name drop it here). This means that I'm working under some more unusual constraints. The b...
r/renpy
post
r/RenPy
2024-14-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-14-08
Can you make a drag object pre-dropped in a droppable? I am a python noob. My friend helped me make a little code for a paper-sorting minigame. You sort draggables into these little droppable slots, and then you submit the sorted papers. Later on in the game, you can come back to the papers and re-sort them to try a...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Hi I'm trying to create a cafe-serving style game in renpy and I'm experiencing an issue where regardless of calling a screen, it still jumps to the next label. in fact, when the timer runs out, instead of automatically updating the number of customers, it ***automatically*** switches to the next label "make\_order" an...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Missing one „=" in third statement number_of_customers=3?
r/renpy
comment
r/RenPy
2024-15-08
Don't know if this solves anything for you, but I noticed two syntax errors here: `elif number_of_customers =3:` should be `elif number_of_customers == 3:` And `label fulfill_order: if selected_order == "sliders":` should be label fulfill_order: if selected_order == "sliders": This also makes the inde...
r/renpy
comment
r/RenPy
2024-15-08
Firstly, don't set up variables using python in init blocks. Use `default` if it is a variable that's part of the game's state, and `define` if it is a constant. What you've written does what you say it does. Let me cut out the bulk and concentate on the first customer: ``` label add_customers: if number_of_custom...
r/renpy
comment
r/RenPy
2024-15-08
r/renpy
post
r/RenPy
2024-15-08
Maybe something displeased, disbelieving, or exasperated. You know, maybe the characters doubting what someone is saying ("Are you sure that happened?"), or is being sarcastic ("Yeah right.")..... He's kinda cute btw./
r/renpy
comment
r/RenPy
2024-15-08
Oooh those are some nice ideas! I'll try to add them! I already made 5 more that I posted on my patreon :3! Thank you so much for your kind words, he is cute ngl haha pretty proud of myself for this one :)
r/renpy
comment
r/RenPy
2024-15-08
I have used the following method to add an image button before successfully: screen screenname: add "background_image.png" imagebutton: focus_mask True idle "idle_image.png" hover "hover_image.png" action Show("screen") In this particular instance I used: idle_image.png = ful...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
call screen \[screen\]\_nav screen \[screen\]\_nav(): \_\_\_\_\_\_\_\_add "background\_image" \_\_\_\_\_\_\_\_modal True \_\_\_\_\_\_\_\_\_\_\_\_\_\_imagebutton auto "image\_%s": \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_focus\_mask True \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_hovered SetVariable("screen\_toolt...
r/renpy
comment
r/RenPy
2024-15-08
I tried what you said and same error. I did manage to fix it. When I use a full transparent background, it would not work but if I took my hover image and lowered the opacity in gimp to 1% it worked(then set it to 0 and it failed again). It would be somewhat safe to assume Renpy focus\_map occasionally has trouble wi...
r/renpy
comment
r/RenPy
2024-15-08
Thats strange, because I only use GIMP for my pictures and never had any problem like that. Well if it works now thats great and if someone really knows why this issue occurs I'm interested. So have you tried using your background image as idle image ? Because it actually could be that RenPy has no real (grabbing ...
r/renpy
comment
r/RenPy
2024-15-08
Try to delete line about focus mask.
r/renpy
comment
r/RenPy
2024-15-08
The mask is needed so that only visible pixels are active. If the entire image is transparent, then this mask makes the entire button inactive.
r/renpy
comment
r/RenPy
2024-15-08
I tried adding some ambiance to my main menu. The idea is that the menu's look changes based on the current time in-game. For some reason though when the game opens the "morning audio" plays (no matter the set time) for the duration of the splash screen. This shouldn't happen as it happens seemingly unprompted. Is ther...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Screens are evaluated for prediction when the engine starts (in init time), and *before* the screen is shown. Once the screen is shown it will be evaluated multiple times (initially at 20fps). You have to be really careful using *any* Python in screens. Two options that happen *when* the screen is shown: * Use `on "s...
r/renpy
comment
r/RenPy
2024-15-08
Alright, thanks, I didn't know that beforehand. Do you mean the use of the`on "show"`part like this?     if persistent.main_menu_version == "day":         add "gui/main_menu_day.png"         on "show" action (renpy.music.play("audio/ambiance/wind.mp3", loop=True, fadeout=1.0, fadein=1.0, if_changed=True)) ...
r/renpy
comment
r/RenPy
2024-15-08
The `on "show"...` should really be a child of the screen, not inside this if statement. Its action needs to be a `Function` action. `Function` (like all the other actions Ren'Py has) is a factory that returns an `Action`. The generated action is then run when the show event occurs. By ommitting `Function` you are st...
r/renpy
comment
r/RenPy
2024-15-08
Alright, so if I understood you correctly: I'll make a python function that has the sound playing properties (?), and then within the main menu screen I'll put `on "show" action Function(`that function`)`so that the sound plays only and only once the menu screen actually shows up after the splash screen. Did I get...
r/renpy
comment
r/RenPy
2024-15-08
So something like this: ``` init python: def main_menu_music(): if persistent.main_menu_version == "day": renpy.music.play("audio/ambiance/wind.mp3", loop=True, ... elif persistent.main_menu_version == "evening": renpy.music.play("audio/ambiance/wind_in_trees.mp3", ... ...
r/renpy
comment
r/RenPy
2024-15-08
That makes so much sense actually! Thank you, this really helped :)
r/renpy
comment
r/RenPy
2024-16-08
I'm creating my own game in Renpy, my inspiration for this is a game called The Virus Game. The game has 10 endings and each of them ends with "Jumpscare". I want to add a similar jumpscare in my game but I have problems with coding. Can any of you tell me how to make a jumpscare or send me a code that will help me wit...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
All it's doing is making a `scene` change (what you seem to be describing as a 'jumpscare'), the narrator describing the ending, and then keeping count of how many endings have been achieved. Nothing complicated there, coding-wise. Start by setting up a variable *before* `label start`, eg. `default endings = 0` Then,...
r/renpy
comment
r/RenPy
2024-15-08
Supplemental: since what I describe above will just add 1 to the variable endings over and over again, you might want to add another variable that's defaults to False for each of the endings, then qualify the count: if not (ending name): # $ endings += 1 $ (ending name) == True "[endings]/10 en...
r/renpy
comment
r/RenPy
2024-15-08
Hello, I've seen that there are a few 3D modeling programs that range from Honey Select to Koikatsu to DAZ3D. I'm just wondering which one has more fantasy assets and which has fantasy assets more readily available. I want to make a good AVN with a real story that takes place in a fantasy setting, and hopefully one of...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Daz is limited to what you can find on the internet and on its marketplace. Basically, you should be able to use any 3D Model as long as you know how stuff works. That is harder to do in Illusion games, but it's still possible if you learn how to create mods with Unity (because the games themselves are made in Unity)....
r/renpy
comment
r/RenPy
2024-15-08
A contentious opinion maybe, but I'd say if you want to make it *good*, you should commit time to learning a generalist 3D software like Blender, and work toward's creating your own assets and original components for renders. I don't know about the other softwares, but there are thousands of Renpy games using Daz nowa...
r/renpy
comment
r/RenPy
2024-18-08
As someone who's extensively used both Honey Select 2 (HS2) and DAZ Studio, I’ve developed some strong opinions about each platform. Before diving in, let's set aside Koikatsu (KK), as it's the least popular for game development and offers the fewest mods. Honey Select 2 (HS2) Strengths: User-Friendly Character Cr...
r/renpy
comment
r/RenPy
2024-19-08
I just helped an Italian translator add their translation into my work but the accented letters, as shown on the script, are missing when in-game. Is there a way to get the accented letters to appear in-game?
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Seems like your font just doesn't support accents.
r/renpy
comment
r/RenPy
2024-15-08
Maybe it's your font, if you want, i can try help you find a similar one that supports accents.
r/renpy
comment
r/RenPy
2024-15-08
I appreciate the help.
r/renpy
comment
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Hey y'all! I really need help figuring out how to get outfits to dynamically update when equipping from inventory. Please advise! My main character is made up of a `layeredimage`: layeredimage Vagabond: ... group armor_shirt: attribute armor_shirt_none default "images/items/item_armor_...
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-25-08
Furthermore, is there anything else I should worry about?
r/renpy
post
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
To my knowledge the image meta data isn’t stripped so if it is a concern, remove it before you publish the game / share it with folks. I’ve never had a concern with this before but if you have say your personal info in image meta data definitely remove it for privacy.
r/renpy
comment
r/RenPy
2024-15-08
are there any tools you know of/can recommend that can "mass-strip" metadata from a bunch of images? Either way, thank you for replying, I appreciate it.
r/renpy
comment
r/RenPy
2024-15-08
I wasn't sure so I just built a windows distribution then extracted it. The images did indeed have metadata (in this case the name of the computer and author on them) So it would be a good idea to manually remove any metadata from the images.
r/renpy
comment
r/RenPy
2024-15-08
Reddit has a few recommendations in this discussion here: [https://www.reddit.com/r/privacy/comments/rjo3dw/any\_good\_tools\_for\_removing\_exif\_data\_from\_photos/](https://www.reddit.com/r/privacy/comments/rjo3dw/any_good_tools_for_removing_exif_data_from_photos/)
r/renpy
comment
r/RenPy
2024-15-08
That's good to know, thank you.
r/renpy
comment
r/RenPy
2024-15-08
Thank you very much.
r/renpy
comment
r/RenPy
2024-15-08
r/renpy
post
r/RenPy
2024-15-08
[https://zaphassets.itch.io/](https://zaphassets.itch.io/) Here is the link to my Itchio store! Thank you for your support and happy VNdeving :D
r/renpy
comment
r/RenPy
2024-15-08
looks silly (in a good sense).
r/renpy
comment
r/RenPy
2024-16-08
Hahaha thank you ☺️
r/renpy
comment
r/RenPy
2024-16-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-15-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-16-08
Hello, I would like to add a small clicker-type mini game beside the dialogue (Say screen). The concept is there's a bomb and you have to keep the clicker at a certain level (it's slowly decreasing) while you're continuing with the dialogue. I have the clicker part working. However, the only way it will appear is by ...
r/renpy
post
r/RenPy
2024-16-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-16-08
create a png or webp with a completely transparent background and use that as a button image, do NOT use focus\_mask with this button!! imagebutton:     idle "invisible.png"     pos (1820,980) # for a 1920x1080 gui with a 100x100 invisible image (lower right corner)     action SetScreenVariable("value...
r/renpy
comment
r/RenPy
2024-16-08
https://preview.redd.it/…have a nice day!
r/renpy
post
r/RenPy
2024-16-08
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco...
r/renpy
comment
r/RenPy
2024-16-08