1.) Paste this into your options.rpy (I pasted it at the top);
Code: Select all
define config.layers = [ 'master', 'transient', 'screens', 'heartsposition', 'overlay' ]2.) Define a position you want your heart to pop up as, here's mine for reference;
Code: Select all
transform heart:
xpos 620
ypos 780
pause .15
yoffset 0
easein .175 yoffset 20
easein .175 yoffset -203.) Showing your heart will look something like this (in my game);
Code: Select all
show redheart onlayer heartsposition at heart with Dissolve(.5)
hide redheart onlayer heartsposition with Dissolve(1)