Search found 6 matches

by errowr
Thu Jul 08, 2021 4:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]I want just one android version, but renpy creates four?
Replies: 1
Views: 1288

Re: I want just one android version, but renpy creates four?

I know how to do this now and just in case someone else encounters the same problem, here's what to do. In the file "rapt/templates/app-build.gradle" there's a line which says: include "x86-64", "armeabi-v7a", "arm64-v8a" Disable that line by removing it or ma...
by errowr
Fri May 14, 2021 5:04 am
Forum: Ren'Py Questions and Announcements
Topic: repeated small pauses makes input sluggish since 7.4.1, why?[solved]
Replies: 2
Views: 726

Re: repeated small pauses makes input sluggish since 7.4.1, why?[solved]

Thanks a lot for your reply. The script I included was just to illustrate my question since the same script didn't cause problems in older Renpy versions.

Knowing that short pauses such as in my script are simply a bad idea is good to know going forward from now.
by errowr
Thu May 13, 2021 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: repeated small pauses makes input sluggish since 7.4.1, why?[solved]
Replies: 2
Views: 726

repeated small pauses makes input sluggish since 7.4.1, why?[solved]

I've noticed that repeated small pauses make interaction sluggish starting from renpy version 7.4.1 In my example below you sometimes have to press the button several times before it will register. And that's with pauses of just 0.01 It gets worse the shorter the pauses are. Renpy version 7.4.0 and ...
by errowr
Mon Apr 19, 2021 2:15 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]I want just one android version, but renpy creates four?
Replies: 1
Views: 1288

[SOLVED]I want just one android version, but renpy creates four?

When creating an android version of my game, renpy creates several versions. It takes a long time and I hope creating just one will significantly cut down on time spent waiting. Is there a way to tell renpy I only want the universal apk built instead of all of them?
by errowr
Mon Apr 19, 2021 2:09 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create an "investigation scene"?
Replies: 2
Views: 427

Re: How to create an "investigation scene"?

I think if you follow the short tutorial in this thread:

viewtopic.php?t=22410

You could get something working the way you want it after adapting it to your own needs.
by errowr
Sun Apr 11, 2021 4:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Color-changing bar
Replies: 4
Views: 581

Re: Color-changing bar

Maybe create an image using a condition switch which shows the appropriately colored image depending on your health variable. image lifebar_player = Composite((1200, 720), (0, 0), ConditionSwitch( "health > 5", "greenbar.png", "health == 5", "yellowbar.png", &...