Search found 4 matches

by Pavel8694
Wed Aug 31, 2022 10:31 am
Forum: Ren'Py Cookbook
Topic: ChromaGlitch : show images with a DDLC-like glitch effect
Replies: 5
Views: 2840

Re: ChromaGlitch : show images with a DDLC-like glitch effect

Yes, it's possible. You can use ATL for that, for example: image eileen glitched: glitch("eileen happy", randomkey=23464843) pause 0.2 glitch("eileen happy", randomkey=3747685) pause 0.1 glitch("eileen happy", randomkey=85386865) pause 0.3 repeat Use the randomkey para...
by Pavel8694
Sun Aug 07, 2022 12:26 pm
Forum: Ren'Py Questions and Announcements
Topic: Resizing images in the gallery via the engine
Replies: 2
Views: 389

Re: Resizing images in the gallery via the engine

Depending on what you want, you can just easily use a transform like zoom or just set xsize and ysize . transform zm(z=0.5): zoom z screen mygallery: vbox: add "myimage" at zm add "anotherimage" xsize 200 ysize 200 Another easy way would be to use the Frame() function, since it ...
by Pavel8694
Sun Aug 07, 2022 5:27 am
Forum: Ren'Py Cookbook
Topic: ChromaGlitch : show images with a DDLC-like glitch effect
Replies: 5
Views: 2840

Re: ChromaGlitch : show images with a DDLC-like glitch effect

Thank you so much for this script! Works flawlessly.

I want to find out if there is any way to make a glitch animation? I just thought she was here. (I didn't pass DDLC, so I don't know what this effect looks like there)
by Pavel8694
Sat Aug 06, 2022 12:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Resizing images in the gallery via the engine
Replies: 2
Views: 389

Resizing images in the gallery via the engine

Greetings to all! I want to find out if there is any way to change the size of images in the gallery through the engine itself, using code. I understand that their size can be changed via Photoshop, but then they will decrease both on the PC version of the game and on the mobile. I would like to cha...