Search found 6 matches
- Wed Oct 26, 2022 3:43 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Apk name for different projects bug
- Replies: 4
- Views: 275
Re: Apk name for different projects bug
Just a guess, did you forget to change the name in options.rpy before building game2? No, but it shouldn't be a problem since by default Renpy makes the buid name the project name, but I always change it to add the version, so I for sure am not leaving the default as well It does for PC builds but ...
- Thu Oct 13, 2022 12:54 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Apk name for different projects bug
- Replies: 4
- Views: 275
Re: Apk name for different projects bug
No, but it shouldn't be a problem since by default Renpy makes the buid name the project name, but I always change it to add the version, so I for sure am not leaving the default as well
- Wed Oct 12, 2022 2:33 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Apk name for different projects bug
- Replies: 4
- Views: 275
Apk name for different projects bug
Hello, I'm having a problem for a long time, and I'm not sure how to fix it. I also don't know if anyone else is having the same problem since I can't find anything like that when searching. When I make the Android ports for different projects, the name always come out wrong. For example, I make "Ga...
- Mon Jun 27, 2022 1:08 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Choice statements with weights
- Replies: 4
- Views: 235
Re: Choice statements with weights
Oh, it's a lot simpler than I thought. Thanks!
- Mon Jun 27, 2022 12:36 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Choice statements with weights
- Replies: 4
- Views: 235
Re: Choice statements with weights
It's not clear to me how I would use it. I tried using: image anim1: atl_choice ::= "choice" (0.7)? ":" "animation1.png" 0.07 "animation2.png" 0.07 "animation3.png" 0.07 atl_choice ::= "choice" (0.3)? ":" "animation4.png" 0.07 "animation5.png" 0.07 "animation6.png" 0.07 repeat But it didn't work
- Mon Jun 27, 2022 12:14 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Choice statements with weights
- Replies: 4
- Views: 235
Choice statements with weights
Hello, I would like to show some specific ATL animations but I'm having some problems. The choice statement chooses block with equal probabilites, but I would like to have some weights when choosing, like this: image anim1: choice if renpy.random.randint(1, 10) > 3: "animation1.png" 0.07 "animation2...