Page 1 of 1

Quickt tiles question

Posted: Sun Jul 07, 2013 2:41 pm
by Grey
At a game jam, trying to get my NPCs to change their tile image under certain circumstances. Just changing self.image = "blah.png" doesn't do the trick. Anyone know how to get the image to update?

Re: Quickt tiles question

Posted: Sun Jul 07, 2013 3:04 pm
by PureQuestion
Well, let's see, in ToME the Pheonix unique changes its image, let's go pillage that...

After changing the image, run

Code: Select all

self:removeAllMOs()

Re: Quickt tiles question

Posted: Sun Jul 07, 2013 4:02 pm
by Grey
That worked, thanks :)