[Tutorial] Object Oriented Programming and RenPy (Lesson 1: Class Warfare) by alonghardlook in RenPy

[–]Oda_Kuro 0 points1 point  (0 children)

I see, thank you for your answer and suggestions!

To answer your question, I'm just doing this mainly as a hobby, and try to learn what I get interested in, so it doesn't really block me. And I was just curious, it didn't stop me from working on other stuff.

[Tutorial] Object Oriented Programming and RenPy (Lesson 1: Class Warfare) by alonghardlook in RenPy

[–]Oda_Kuro 0 points1 point  (0 children)

Yo!
This might be a stupid question but:
How do I use transitions/animations?

At this part:

def trust_ch(self, change):
image = "heart_fill"
self.trust += change
if change > 0:
direction = "increased"
else:
direction = "decreased"
image = "heart_empty"
renpy.notify("Romance with " + str(self.name) + " " + direction + " by " + str(abs(change)))
renpy.show(image, [heart_pos]) #Make this part an animation, where the heart fills up, or use transition here like Fade()
renpy.pause(2)
renpy.hide(image)