Search found 96 matches
- Mon Apr 06, 2015 1:35 am
- Forum: Ren'Py Questions and Announcements
- Topic: Image as variable[SOLVED!]
- Replies: 1
- Views: 275
Image as variable[SOLVED!]
Hello! I have an image declared in init block: init: image Tchi01f_1: anchor (0,0) pos (500, 300) "image/sprites/chi/Tchi01f_1.png" Is there any way I can use this image as variable? For example: #scenario file $var1 = Tchi01f_1 #screen file add var1 #or maybe show statement show var1 I'd appreciate...
- Mon Apr 06, 2015 12:53 am
- Forum: Ren'Py Questions and Announcements
- Topic: Side image problem[SOLVED!]
- Replies: 2
- Views: 318
Re: Side image problem
Oh, I got it! Thank you very much!
- Sun Apr 05, 2015 12:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Side image problem[SOLVED!]
- Replies: 2
- Views: 318
Side image problem[SOLVED!]
Hello! I'm porting one game to Ren'Py engine and I have thousands of pictures I should place as side image on say screen. I can extract screen coordinates from these images(they have custom format, but this topic is not about it). For ordinary sprites I can do something like that: init: char_body bo...
- Sat Mar 21, 2015 7:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Play sound effects with delay
- Replies: 4
- Views: 1428
Re: Play sound effects with delay
PyTom, Donmai, thank you for your answers!
- Sat Mar 21, 2015 6:59 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Play sound effects with delay
- Replies: 4
- Views: 1428
Play sound effects with delay
Hello! I want to play some of sound effects in my game with delay. So I want next phrase to begin appear on say screen and after couple of seconds from that moment sound effect should play. Is there any way to do that? I'd appreciate any help with that.
- Thu Mar 19, 2015 8:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Coordinates problem
- Replies: 4
- Views: 536
Re: Coordinates problem
Well... It's magic for me. I added anchors and now it works fine. And I absolutely don't undestand what's going on. Anyway, thank you for your help!
- Thu Mar 19, 2015 10:26 am
- Forum: Ren'Py Questions and Announcements
- Topic: Coordinates problem
- Replies: 4
- Views: 536
Coordinates problem
Hello! Here's my code: init: image chi_body 01m_1 center: "image/sprites/chi/01m_1.png" xpos 403 ypos 16 image chi_face 01m_002 center: "image/sprites/chi/01m_002.png" xpos 470 ypos 143 label start: scene bg14 show chi_body 01m_1 center show chi_face 01m_002 center So, body should be in (403, 16), f...
- Wed Mar 18, 2015 3:59 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Transition synchronization
- Replies: 2
- Views: 416
Re: Transition synchronization
I want to display bg, body and face at once with dissolve. So, you first example is exactly my case. Thank you very much!
- Wed Mar 18, 2015 3:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Transition synchronization
- Replies: 2
- Views: 416
Transition synchronization
Hello! I'm looking for a way to implement transition synchronization. I have background picture, body sprite and face sprite and I want my game to show all these things together with dissolve transition. Maybe I can create an image with several image files? Or maybe I can write something like: show ...
- Mon Mar 16, 2015 4:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show image with parameters
- Replies: 9
- Views: 1183
Re: Show image with parameters
Thank you for your answer! It's a lot of help 
- Sun Mar 15, 2015 1:01 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show image with parameters
- Replies: 9
- Views: 1183
Re: Show image with parameters
Eyecatch is a screen with some images and some information about following scenario
Something like opening in anime but eyecatch is displayed for a short time, about 1-3 seconds.
- Sun Mar 15, 2015 12:17 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Show image with parameters
- Replies: 9
- Views: 1183
Re: Show image with parameters
thank you! I'll try this.
- Sun Mar 15, 2015 11:55 am
- Forum: Ren'Py Questions and Announcements
- Topic: Show image with parameters
- Replies: 9
- Views: 1183
Re: Show image with parameters
Thank you very much! But can this screen disappear in 2 seconds from it has been showed?
- Sun Mar 15, 2015 11:27 am
- Forum: Ren'Py Questions and Announcements
- Topic: Show image with parameters
- Replies: 9
- Views: 1183
Show image with parameters
Hello! I'm trying to implement eyecatch in my game. I want to show date and time of scene in this eyecatch. I have 1-9 numbers and "X" if date is unknown as images. Date and time is in following format: 20n1n2/n3n4/n5n6 n7n8:n9n10. So I need to show 10 numbers as images in the scenario at the same t...
- Fri Mar 13, 2015 10:20 am
- Forum: Ren'Py Questions and Announcements
- Topic: Interrupt voice on next phrase
- Replies: 2
- Views: 440
Re: Interrupt voice on next phrase
Thank you very much! I'll take a look.