Quickt tiles question
Moderator: Moderator
Quickt tiles question
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?
-
- Master Artificer
- Posts: 726
- Joined: Fri Feb 03, 2012 3:53 am
Re: Quickt tiles question
Well, let's see, in ToME the Pheonix unique changes its image, let's go pillage that...
After changing the image, run
After changing the image, run
Code: Select all
self:removeAllMOs()
Re: Quickt tiles question
That worked, thanks :)