Anyone ever tried to make a rhythm game using renpy? Any code or demo available?
I'd like to make one but I'm pretty clueless on how I'd do it...
Any help is appreciated, thank you!
Search found 147 matches
- Thu Dec 04, 2014 9:40 am
- Forum: Ren'Py Questions and Announcements
- Topic: Rhythm Game on Renpy
- Replies: 16
- Views: 8527
- Mon Oct 06, 2014 3:13 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Defined twice error
- Replies: 6
- Views: 5340
Re: Defined twice error
Hello :)
In the script.rpy file check the lines 745 and 846. They should have something there to fix.
In the script.rpy file check the lines 745 and 846. They should have something there to fix.
- Thu Sep 25, 2014 12:46 pm
- Forum: Ren'Py Questions and Announcements
- Topic: some configurations for each character
- Replies: 2
- Views: 327
Re: some configurations for each character
When you declare a character, you can add some configurations to it: $ outline = Character(None, what_size=20, #Font size what_xalign=0.5, #Centers text within the window window_xalign=0.5, #Centers the window horizontally window_yalign=0.5, #Centers the window vertically what_text_align=0.5, #Cente...
- Thu Sep 25, 2014 12:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: ScriptError: could not find label
- Replies: 2
- Views: 1967
Re: ScriptError: could not find label
You're probably using a jump statement to a label that was not declared.
- Wed Sep 24, 2014 11:04 am
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Python Function
- Replies: 2
- Views: 530
Re: [solved] Python Function
Thank you very much Alex, it worked!
- Tue Sep 23, 2014 6:30 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Python Function
- Replies: 2
- Views: 530
[solved] Python Function
I'm trying to make a python function that changes the value of a variable: # The game starts here. label start: python: num = 1 def add_num(): num += 1 return num label testing: $ newnum = add_num() "[newnum]" But I'm receiving an error: UnboundLocalError: local variable 'num' referenced before assi...
- Thu Sep 18, 2014 8:03 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Renpy integration with Supercollider
- Replies: 2
- Views: 317
Re: Renpy integration with Supercollider
It would be awesome if you could make it! I'd like to see it's results and use it too.
- Thu Sep 18, 2014 4:42 pm
- Forum: Ren'Py Questions and Announcements
- Topic: pie charts
- Replies: 7
- Views: 1199
Re: pie charts
I'd like to use it as well! If you find a way how to do this, please share >~<
- Sat Sep 13, 2014 10:48 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Renpy Launcher Skin
- Replies: 4
- Views: 739
Re: Renpy Launcher Skin
Ahh sorry I was indeed not moving the image files as I should have.
It worked now, thank you!
It worked now, thank you!
- Sat Sep 13, 2014 9:59 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Renpy Launcher Skin
- Replies: 4
- Views: 739
Re: Renpy Launcher Skin
mjshi my skin.rpy was under the renpy-6.18.0-sdk > launcher > game folder. I tried putting it on the theme folder but it didn't work as well, nothing changed.
I think the problem is the Renpy version?
I think the problem is the Renpy version?
- Sat Sep 13, 2014 9:21 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Renpy Launcher Skin
- Replies: 4
- Views: 739
[solved] Renpy Launcher Skin
I'm trying to change the skin of Renpy laucher as it is shown here but it's not changing at all. How can I fix this? On Renpy 1.7 it used to work but now that I'm using Renpy 1.8 it is not. My skin.rpy is under the renpy-6.18.0-sdk > launcher > game folder. init python: # The color of non-interactiv...
- Sat Sep 13, 2014 7:41 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Android Icon and Presplash Images
- Replies: 2
- Views: 1069
Re: Android Icon and Presplash Images
Thank you, it worked.
- Sat Sep 13, 2014 5:29 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Android Icon and Presplash Images
- Replies: 2
- Views: 1069
[solved] Android Icon and Presplash Images
I'm having trouble setting the icon and presplash image of my game for Android. Even though I'm following the instructions listed here the default Renpy image is still being shown. I tried using the files android-icon.png and android-presplash.jpg on both game and project directory. I'm using Renpy ...
- Mon Sep 08, 2014 4:35 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Skip Mode Text
- Replies: 4
- Views: 3672
Re: Skip Mode Text
Thank you very much saguaro and Alex!
@edit
What the "u" means on the u'Mode Skip'
@edit
What the "u" means on the u'Mode Skip'
- Sun Sep 07, 2014 7:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved] Skip Mode Text
- Replies: 4
- Views: 3672
[solved] Skip Mode Text
When skipping, it is displayed on the screen the text "Skip Mode".
How can I customize it? Like change the text and style.
How can I customize it? Like change the text and style.