Search found 3775 matches

by Imperf3kt
Sun Jan 07, 2024 2:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with image output in games
Replies: 2
Views: 36175

Re: Problem with image output in games

This looks very much like a graphics driver issue.
Try holding shift as the game loads and change which renderer you use to see if that helps.
by Imperf3kt
Mon Dec 18, 2023 3:52 am
Forum: Creator Discussion
Topic: Best way to add patreon-only content to your game
Replies: 5
Views: 7240

Re: Best way to add patreon-only content to your game

I've never dealt with Patreon as a game dev, but I think most devs who do use it rely on trust. They trust that their patrons won't leak exclusive content. And if a leak does happen, their reaction is usually reactive, not proactive. I assume this "solution" won't satisfy your needs, so l...
by Imperf3kt
Fri Dec 15, 2023 11:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Failed to build apk on Ren'py (Raspberry pi 3B+ version
Replies: 4
Views: 6977

Re: Failed to build apk on Ren'py (Raspberry pi 3B+ version

For the raspberry Pi, you can only run games on it, it isn't able to build from it
by Imperf3kt
Thu Dec 14, 2023 2:32 am
Forum: Ren'Py Questions and Announcements
Topic: Declare image from online source possible?
Replies: 3
Views: 6807

Re: Declare image from online source possible?

I haven't needed to worry about such things yet, so am not familiar with how to go about it, but the latest version of renpy patreon articles have been mentioning something about letting Android users download additional files when your app is over the 2GB limit, it may hold some information you can...
by Imperf3kt
Tue Dec 12, 2023 7:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Declare image from online source possible?
Replies: 3
Views: 6807

Re: Declare image from online source possible?

Sort of. I managed to do this for favicons and logos for my socials links, but you will require a Web server specifically set up to host the files if you want to use your own. Also of concern is the file size, if the files are too large, the player will have to wait for them to download every single...
by Imperf3kt
Sun Dec 03, 2023 3:10 am
Forum: Ren'Py Questions and Announcements
Topic: Adding checkpoints for rollback
Replies: 2
Views: 2687

Re: Adding checkpoints for rollback

Place this after your pauses

Code: Select all

$ renpy.block_rollback
Be aware this will block rolling back before this point entirely
by Imperf3kt
Sun Nov 26, 2023 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Trouble optimizing a large viewport.
Replies: 10
Views: 5228

Re: Trouble optimizing a large viewport.

When I need to know this information, I just use the developer tools to assist. Shift + i on a displayable to know it's size, shift +D to open the developer console then check the location picker. Failing that, an image editing tool is great for knowing the exact position of where an image should go...
by Imperf3kt
Thu Nov 23, 2023 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: Android Development Questions—JDK and Presplash/Downloading images
Replies: 3
Views: 4023

Re: Android Development Questions—JDK and Presplash/Downloading images

I'm sorry, I have no experience with macs, my last interaction with one being over 2 decades ago.

I don't recognise the bug you are experiencing
by Imperf3kt
Thu Nov 23, 2023 1:27 am
Forum: Creator Discussion
Topic: Ai writing VNs?
Replies: 20
Views: 24946

Re: Ai writing VNs?

Donmai wrote: Wed Nov 22, 2023 9:54 am beta.chatacter.ai took me to a strange place I probably should never have visited. But beta.character.ai seems to be a lovely playground. :)
Well now, typos do be fun lol
Sorry about that 😅
by Imperf3kt
Wed Nov 22, 2023 2:36 am
Forum: Ren'Py Questions and Announcements
Topic: Android Development Questions—JDK and Presplash/Downloading images
Replies: 3
Views: 4023

Re: Android Development Questions—JDK and Presplash/Downloading images

Ren'Py (currently) specifically required version 8, yes. Other versions will not work.
by Imperf3kt
Sun Nov 19, 2023 11:31 pm
Forum: Creator Discussion
Topic: Ai writing VNs?
Replies: 20
Views: 24946

Re: Ai writing VNs?

The first half dozen comments mention how AI isn't particularly creative.
beta.chatacter.ai begs to differ
by Imperf3kt
Wed Nov 15, 2023 8:27 am
Forum: Ren'Py Questions and Announcements
Topic: Queued Notifications
Replies: 2
Views: 2147

Re: Queued Notifications

(m_from_space posted a solution while I was typing this, but I'll post it anyway as an alternative) Not ideal, but here is one way that works by using list indexes. Its not the best, as the player can click through the message and it also delays the dialogue, but its a starting point. default messag...
by Imperf3kt
Sun Nov 12, 2023 5:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Working around the lack of a pressed button state?
Replies: 11
Views: 5517

Re: Working around the lack of a pressed button state?

I don't know what else to say tbh.
Without further context about what you are trying to achieve, I can only guess at what might do what you want
by Imperf3kt
Sun Nov 12, 2023 4:25 am
Forum: Ren'Py Questions and Announcements
Topic: Working around the lack of a pressed button state?
Replies: 11
Views: 5517

Re: Working around the lack of a pressed button state?

selected_idle and selected_hover work for buttons that don't need to be held, maybe this?
by Imperf3kt
Thu Nov 02, 2023 12:08 am
Forum: Ren'Py Questions and Announcements
Topic: "News" not working on Google Play only
Replies: 0
Views: 5318

"News" not working on Google Play only

I make use of renpy news , which I may soon replace with the renpy.fetch feature once I get a chance to play around with it. I noticed today that on the Google Play version of my project, this feature is simply not working. The button for news appears but it does nothing when I tap on it. It also do...