Search found 5 matches

by piinkpuddiin
Sun Mar 24, 2024 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Need help with Transition Condition Switch.
Replies: 13
Views: 797

Re: Need help with Transition Condition Switch.

I managed to give each expression an alpha dissolve but it is jarring as the face expression disappear completely and the next expression slowly appears. Hope this is somewhat helpful. transform persona_appear: on show: alpha 0.0 linear 1.5 alpha 1.0 on hide: linear .5 alpha 0.0 transform show_up: a...
by piinkpuddiin
Sun Mar 24, 2024 4:37 pm
Forum: Ren'Py Cookbook
Topic: FancyText: Effects for Slow Text Display
Replies: 20
Views: 10857

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: up...
by piinkpuddiin
Fri Mar 22, 2024 10:48 am
Forum: Ren'Py Questions and Announcements
Topic: Need help with Transition Condition Switch.
Replies: 13
Views: 797

Re: Need help with Transition Condition Switch.

Hi, not sure I can be of much help as I'm not that good with OOP too :oops: but LiveComposite has been deprecated for a while, try Composite.
https://www.renpy.org/doc/html/changelog6.html#changes
by piinkpuddiin
Thu Jan 25, 2024 1:33 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Error: 'str' object is not callable, textbuttons
Replies: 2
Views: 483

[SOLVED]Error: 'str' object is not callable, textbuttons

Hello, I'm having a "'str' object is not callable" error whenever I hover over a textbutton. The BBCode: I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00start.rpy", line 275, in script python: File "renpy/common/00start.rpy",...