Search found 5 matches

by PixelDemons
Fri Jul 27, 2018 1:15 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make different hearts appear based off of points
Replies: 11
Views: 1359

Re: How to make different hearts appear based off of points

If you don't want to use the most current RenPy, then rather than the layeredimage, I'd recommend doing the same thing I did, but with a Condition Switch instead. Condition Switch: https://www.renpy.org/doc/html/displayables.html?highlight=conditionswitch#ConditionSwitch Though I recommend using th...
by PixelDemons
Thu Jul 26, 2018 3:46 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make different hearts appear based off of points
Replies: 11
Views: 1359

Re: How to make different hearts appear based off of points

Imperf3kt wrote: Thu Jul 26, 2018 3:44 pm You need to be using Ren'Py 7.0.0 or later for layeredimage to work.
Ooooooh..... I feel dumb.
by PixelDemons
Thu Jul 26, 2018 3:33 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make different hearts appear based off of points
Replies: 11
Views: 1359

Re: How to make different hearts appear based off of points

This is the perfect situation to use a layeredimage with conditionals. Here is the working code as an example. I'm including the tester project with the images I made so you can see it in practice: define h = Character("{image=herzelH} Herzel") define m = Character("{image=moonH} Moo...
by PixelDemons
Thu Jul 26, 2018 11:13 am
Forum: Ren'Py Questions and Announcements
Topic: How to make different hearts appear based off of points
Replies: 11
Views: 1359

How to make different hearts appear based off of points

I'm still a bit new to ren'py and was wondering if anyone knows how to make certain hearts appear beside a person's name depending on love points. When a certain amount of points are earned the heart will change color. Like it would start out with a black heart (9 points and under), then an indigo h...