Search found 7 matches
- Sat Jun 05, 2021 11:54 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Help with Transforms
- Replies: 1
- Views: 551
Re: Help with Transforms
Hi all, I'm sort of new to Ren'py and would like some help. I have a transform like this: transform ease(start, end, time): subpixel True start easein time end And use it like this: show oracle sanctuary 01 at ease(offscreenleft, left, 1.0) And it works great. But how can I add an xoffset part to t...
- Sat Jun 05, 2021 12:28 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Help with Transforms
- Replies: 1
- Views: 551
[SOLVED] Help with Transforms
Hi all, I'm sort of new to Ren'py and would like some help. I have a transform like this: transform ease(start, end, time): subpixel True start easein time end And use it like this: show oracle sanctuary 01 at ease(offscreenleft, left, 1.0) And it works great. But how can I add an xoffset part to th...
- Wed Jun 02, 2021 12:18 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help with unlocking gallery image from script
- Replies: 4
- Views: 464
Re: Help with unlocking gallery image from script
If you have this in your Image gallery code: g.button("end1") g.condition("persistent.end1") g.image("end1.jpg") Your script.rpy should use $ persistent.end1 = True Reference: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=46976#p471546 Unfortunately, there's no g.condition in my Gallery sc...
- Tue Jun 01, 2021 10:41 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with unlocking gallery image from script
- Replies: 4
- Views: 464
Help with unlocking gallery image from script
Hi all, I have a gallery built in that typically unlocks an image as it is seen in the game. But I would rather use a code in the script file itself that unlocks an image of my choosing. I've tried in my script file: $ g.unlock_image("ImageIWantUnlocked") And get nothing at all. And also: $ Gallery....
- Thu Nov 19, 2020 5:51 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help with button hover
- Replies: 1
- Views: 421
Help with button hover
Hi all, I've added some buttons to my main menu and set up a continue button that starts the game wherever the player last saved it. My buttons are grey and they turn white on hover. The problem is though, that the continue button is white no matter if it's hovered or not. My button: $lastsave=renpy...
- Mon Nov 02, 2020 11:02 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help showing image and video at the same time
- Replies: 2
- Views: 303
Re: Help showing image and video at the same time
The "with" command stops the script execution until the transition is complete. If the displayables are to be shown simultaneously, write the "with" command after the images are displayed. Something like this: scene 01: subpixel True size (2112, 1188) xoffset -192 linear 10 xoffset 0 show dustright...
- Mon Nov 02, 2020 6:58 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help showing image and video at the same time
- Replies: 2
- Views: 303
Help showing image and video at the same time
Hi all, I have a new scene appearing and then a .webm masked to look like dust floating across the screen. My problem is the image shows up and goes through the Dissolve(2.0) process, and THEN the video starts. I would like that the video starts at the same time the image starts to come in. My code ...