Search found 2 matches

by stevetrump
Thu Oct 18, 2018 7:26 am
Forum: Ren'Py Questions and Announcements
Topic: Using variable (flag?) for side image when defining characters.
Replies: 2
Views: 395

Re: Using variable (flag?) for side image when defining characters.

You likely want to just interpolate gender into the single defined image: default pc_gender = "male" image side pc = "images/pc_[pc_gender].png" define pc = Character("[pc_name]") label start: pc 'Male Picture "images/pc_male.png"' $ pc_gender = "female&...
by stevetrump
Thu Oct 18, 2018 4:23 am
Forum: Ren'Py Questions and Announcements
Topic: Using variable (flag?) for side image when defining characters.
Replies: 2
Views: 395

Using variable (flag?) for side image when defining characters.

Hey guys, I'm a total newbie at this still and I just have a simple question.. At the start of my game you can choose a gender, and I want to show a side image (portrait) of a male or a female depending on your choice. How can I easily do this? When I define the "you" character at the top ...