Search found 133 matches
- Thu Jan 30, 2014 5:08 am
- Forum: Ren'Py Questions and Announcements
- Topic: Positioning of characters issue [SOLVED]
- Replies: 3
- Views: 412
Re: Positioning of characters issue
You could also just define two new positions so you can put them wherever you want define left2 = Position(xalign=0.3) define right2 = Position(xalign=0.7) Just change the xalign to the position you see the be more fitting, and use left2 or right2 (or whatever you call them) instead of left and righ...
- Mon Jan 27, 2014 5:24 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Transition during dialogue [Solved]
- Replies: 3
- Views: 576
Re: Transition during dialogue
It works perfectly :3
Thank you very much
Thank you very much
- Mon Jan 27, 2014 4:10 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Transition during dialogue [Solved]
- Replies: 3
- Views: 576
Transition during dialogue [Solved]
How do you apply a transition to a image so it works at the same time the text is being shown? I mean, I want a image to appear slowly with a long dissolve, but I want at the same time the text to keep going, if I use "show image with Dissolve(10.0)" for example, the textbox won't appear until the d...
- Sun Jan 26, 2014 10:57 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Cursor in the middle of the screen
- Replies: 1
- Views: 844
Cursor in the middle of the screen
I just realized something that happens not only in my project, but also with the tutorial and the question. If I go into fullscreen mode, the cursor won't hide at all, and this old thread talks about the cursor hiding itself after 30 seconds. In fact, after 30 seconds the cursor goes to the center o...
- Sat Jan 25, 2014 3:24 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to code the sprites into the VN? [SOLVED]
- Replies: 2
- Views: 617
Re: How to code the sprites into the VN? [RenPy]
You need to define where is the image first, then use it. Just go to script.rpy and add the image at the beginning: # You can place the script of your game in this file. # Declare images below this line, using the image statement. image eileen happy = "eileen_happy.png" image my image = "sprites/my ...
- Sat Jan 25, 2014 3:16 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Changing the size of say who window (name) in text history
- Replies: 11
- Views: 3346
Re: Changing the size of say who window (name) in text histo
I'm not sure but I think you can do it going to the screens.rpy and in the say screen write the style property you want below the "who" window. Something like this: # The two window variant. vbox: style "say_two_window_vbox" if who: window: style "say_who_window" text who: size 30 #You can change th...
- Fri Jan 24, 2014 11:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Quit button in main menu problem [Solved]
- Replies: 2
- Views: 365
Re: Quit button in main menu problem
In your main_menu screen in the screens.rpy file you should have a line with this written:
Just erase the "confirm=False" and the message should appear
Code: Select all
textbutton _("Quit") action Quit(confirm=False)Code: Select all
textbutton _("Quit") action Quit()- Fri Jan 24, 2014 11:56 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Deleting a save data
- Replies: 7
- Views: 1346
Re: Deleting a save data
Is your Ren'py the latest version? It's possible that the toggle key didn't exist in older versions. I know 'm' does nothing in my version (6.13). Though oddly enough, the delete key still worked fine without any need for additional code. Yes, it is the latest (6.14). Maybe something was changed fr...
- Fri Jan 24, 2014 6:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Deleting a save data
- Replies: 7
- Views: 1346
Re: Deleting a save data
Is your Ren'py the latest version? It's possible that the toggle key didn't exist in older versions. I know 'm' does nothing in my version (6.13). Though oddly enough, the delete key still worked fine without any need for additional code. Yes, it is the latest (6.14). Maybe something was changed fr...
- Fri Jan 24, 2014 4:42 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Deleting a save data
- Replies: 7
- Views: 1346
Re: Deleting a save data
It works perfectly. I really really really really thank you Haze, it couldn't work better. The only thing I'm still missing is the key to toggle the music, I tried I couple of things but nothing yet, although I think I may be close to something. It's not a priority for me right now so I'll leave it ...
- Thu Jan 23, 2014 1:25 pm
- Forum: Ren'Py Questions and Announcements
- Topic: JEdit 5.1 Testing
- Replies: 8
- Views: 1153
Re: JEdit 5.1 Testing
Cool, I'll give it a try. Thank you for all your work PyTom.
For now it seems to work properly.
For now it seems to work properly.
- Thu Jan 23, 2014 10:45 am
- Forum: Ren'Py Questions and Announcements
- Topic: Disable imagemap quickmenu in NVL mode?
- Replies: 3
- Views: 494
Re: Disable imagemap quickmenu in NVL mode?
I think "hide quick_menu" and "show quick_menu" should be enough. Never tried tho.
- Wed Jan 22, 2014 8:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Gallery BG error, game doesn't open...
- Replies: 2
- Views: 673
Re: Gallery BG error, game doesn't open...
You need to define the images before using them. Something like this: init: image Lune = "Lune.jpg" init python: #Galleries settings - start #list the CG gallery images here: gallery_cg_items = ["Lune"] #how many rows and columns in the gallery screens? gal_rows = 3 gal_cols = 3 #thumbnail size in p...
- Wed Jan 22, 2014 1:43 am
- Forum: Ren'Py Questions and Announcements
- Topic: config.console ?
- Replies: 10
- Views: 11294
Re: config.console ?
I'm not an expert but line 15 in Options is where you have the config.developer function. Have you set it up as True? You need it to be True if you want it to work.
- Wed Jan 22, 2014 1:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: Deleting a save data
- Replies: 7
- Views: 1346
Deleting a save data
This should be pretty easy but for some reason I can't find a way 1. I can't delete a save data, I've read that pressing delete over a save slot should be enough for that but it doesn't seem to work for me. I can't really figure how to do it. It also happens for the "toggle music" when pressing "m"....