Search found 15345 matches
- Thu Jun 09, 2022 4:56 pm
- Forum: Ren'Py Questions and Announcements
- Topic: misplaced focus_mask
- Replies: 13
- Views: 345
Re: misplaced focus_mask
I haven't had a chance to test this, but right now the focus_mask isn't positioned, so it's always in the top-left of the button. If you want something that can be positioned, wrap the image inside Fixed, and n put the image inside the fixed. For example: focus_mask Fixed(Image("images/Overlay/FMs/o...
- Wed Jun 08, 2022 11:35 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How does the testcase system work?
- Replies: 4
- Views: 356
Re: How does the testcase system work?
You should be able to run it with renpy.sh or renpy.exe and the rest of the command the same.
- Wed Jun 08, 2022 11:29 pm
- Forum: Ren'Py Questions and Announcements
- Topic: determining currently selected language (e.g. english)
- Replies: 2
- Views: 204
Re: determining currently selected language (e.g. english)
It's preferences.language. You can read it, but don't set it, as Language does a lot of work.
- Wed Jun 08, 2022 11:28 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]How not to include in-app purchases in Android applications
- Replies: 12
- Views: 642
Re: How not to include in-app purchases in Android applications
It should be in the 8.0/7.5 prerelease that just came out.
- Wed Jun 08, 2022 10:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py 8.0.0 and 7.5.0 Prereleased
- Replies: 45
- Views: 4471
Re: Ren'Py 8.0.0 and 7.5.0 Preleased
Ren'Py 8.0.0.22060901 / Ren'Py 7.5.0.2206090) I just made a new prerelease, with a lot of fixes for issues that the community reported. Thank you to everyone that's been testing these releases. Expressions in ATL are now evaluated using a cached and compiled version of the expression, and hence are ...
- Wed Jun 08, 2022 7:23 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py 8.0.0 and 7.5.0 Prereleased
- Replies: 45
- Views: 4471
Re: Ren'Py 8.0.0 and 7.5.0 Preleased
Ocelot is correct as to what hide does.
- Tue Jun 07, 2022 10:24 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]How not to include in-app purchases in Android applications
- Replies: 12
- Views: 642
Re: How not to include in-app purchases in Android applications
I just landed a fix for this in Ren'Py 7.5/8.0.
- Sat Jun 04, 2022 11:54 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Crop transform stops working in renpy 8?
- Replies: 5
- Views: 272
Re: Crop transform stops working in renpy 8?
I don't understand what nulltransform was supposed to do, so I'm not sure I can help you with that.
- Fri Jun 03, 2022 11:33 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Crop transform stops working in renpy 8?
- Replies: 5
- Views: 272
Re: Crop transform stops working in renpy 8?
There was a change that made crops using floating point numbers relative, so that 2.0 means "twice the image size" rather than "two pixels". If that's not the cause of this, It's also possible that an issue was introduced. If you can put together a small standalone demo, that would help a lot in deb...
- Fri Jun 03, 2022 11:39 am
- Forum: Ren'Py Questions and Announcements
- Topic: Some people can't play my game
- Replies: 9
- Views: 467
Re: Some people can't play my game
The cache/ directory is distributed by default, and should be distributed by default. It contains information that is derived from the game, that Ren'Py uses to improve start time - for example, the Python in the game precompiled to bytecode, so Ren'Py doesn't have to recompile it every time the gam...
- Fri Jun 03, 2022 12:29 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved]Attributes messed up by Mouse Wheel
- Replies: 2
- Views: 223
Re: Attributes messed up by Mouse Wheel
The most likely problem is that the object with the attribute is created in an init block. Only objects reachable from variables that are changed after the end of the init phase are saved, and only those variables are changed. Chances are, what you need to do is to create your object in a default st...
- Fri Jun 03, 2022 12:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: Some people can't play my game
- Replies: 9
- Views: 467
Re: Some people can't play my game
For the record, deleting persistent data before distributing the game isn't required, and shouldn't be recommended.
- Sun May 29, 2022 9:28 pm
- Forum: Ren'Py Questions and Announcements
- Topic: BUILD FAILED, A problem occurred evaluating project ':app'.
- Replies: 6
- Views: 359
Re: BUILD FAILED, A problem occurred evaluating project ':app'.
rayminator wrote: ↑Sun May 29, 2022 3:47 pmGradle User C++ language not python language that's the reason why it failed
Please don't give bad advice like this when I'm trying to help a user.
- Sun May 29, 2022 9:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py 8.0.0 and 7.5.0 Prereleased
- Replies: 45
- Views: 4471
Re: Ren'Py 8.0.0 and 7.5.0 Preleased
RFB, can you break that out so I can see what's going on, and figure what the change was?
- Sun May 29, 2022 12:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: is config.speaking_attribute supposed to replace other image attributes?
- Replies: 3
- Views: 207
Re: is config.speaking_attribute supposed to replace other image attributes?
That's right, if I'm analyzing this correctly.