Search found 5 matches

by kappamomo
Wed Mar 27, 2024 12:48 pm
Forum: Ren'Py Cookbook
Topic: FancyText: Effects for Slow Text Display
Replies: 20
Views: 10499

Re: FancyText: Effects for Slow Text Display

I had an error with the call_slow_done, here's my little fix that made it work again. For anyone who happens to have the same error as me (Renpy 8.2.1) At line 402 change: self.call_slow_done(st) to self.slow = False I'm no pro coder by any means so please be cautious when you try this fix! Edit: u...
by kappamomo
Wed Feb 21, 2024 11:01 am
Forum: Ren'Py Cookbook
Topic: FancyText: Effects for Slow Text Display
Replies: 20
Views: 10499

Re: FancyText: Effects for Slow Text Display

hey, so there's this error where the attribute self done or something somehow doesn't exist thus cannot work no matter what I do. Is there a fix or should I dial back to a older version?
by kappamomo
Fri Jan 12, 2024 1:00 pm
Forum: Ren'Py Questions and Announcements
Topic: CPS fade in effect?
Replies: 2
Views: 26927

Re: CPS fade in effect?

Step 1: set cps to max, so all text appears at once. Step 2: add a transform to your game: transform text_appear: alpha 0. linear 0.8 alpha 1. Step 3: find say screen in screens.rpy and add at text_appear at the end of text what id "what" line. (you can change fade duration by replacing 0...
by kappamomo
Wed Jan 10, 2024 5:59 pm
Forum: Development of Ren'Py
Topic: Ren'Py Gripes
Replies: 556
Views: 603398

Re: Ren'Py Gripes

less a gripe and more a request. I want other cps effects besides the default typewriter. it's minor, but really changes the flare of VN.
by kappamomo
Wed Jan 10, 2024 2:09 pm
Forum: Ren'Py Questions and Announcements
Topic: CPS fade in effect?
Replies: 2
Views: 26927

CPS fade in effect?

question for y'all, is there a way to change cps from the usual typewriter effect to like a fade in one? or is that impossible at the moment? Some visual novels used that approach, but it seems like Ren'Py, even with Python, can't do it.