Page 1 of 1

How to add a side image?

Posted: Sat Nov 03, 2018 9:08 pm
by princessap7
So I looked in a couple of places including here on the forums and on the documentation but I can't seem to get my side image to show up.

Code: Select all

define e = Character("Emily", image="emily")

image side emily_smile = "Emily/Side_Emily_Smile_eyes_closed.png"

label start:
    scene bg school

    e "This was without a doubt! The Best! Idea! EVER!"

    e "There's so many cute girls!"

    return
This is my code. Or at least the relevant parts. And I'm using the new UI if that has anything to do with it...

Re: How to add a side image?

Posted: Sun Nov 04, 2018 4:22 am
by IrinaLazareva

Code: Select all

define e = Character("Emily", image="emily")
image side emily = "Emily/Side_Emily_Smile_eyes_closed.png"

Re: How to add a side image?

Posted: Sun Nov 04, 2018 4:26 am
by IrinaLazareva
If you need emotions

Code: Select all

image side emily = "emily_file.png"
image side emily smile = "smile_emily_file.png"
image side emily sad = "sad_emily_file.png"
define e = Character("Emily", image="emily")

label start:
    e "Just me"
    e smile "I'm smile"
    e sad "I'm sad"
    e "Just me again"
    return