Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: TheRoger on Sat 18/06/2011 13:34:06

Title: Object always behind (SOLVED)
Post by: TheRoger on Sat 18/06/2011 13:34:06
Is it possible to make, that object would be always behind. because right now, if character stand near door, he is drawn behind them.
Title: Re: Object always behind
Post by: Dualnames on Sat 18/06/2011 13:45:31
Set the baseline of the object to 1.
Title: Re: Object always behind
Post by: barefoot on Sat 18/06/2011 13:47:03
Change the objects baseline in events panel to true..

bareoot
Title: Re: Object always behind
Post by: Wyz on Sat 18/06/2011 13:47:55
Objects have a property called 'BaselineOverriden', if you set this to true you can specify a baseline yourself just like the how you would do for walk-behinds. It does not show the line in the editor (but I don't know if the newest editor does this) so you need to specify the y-value yourself.
Title: Re: Object always behind
Post by: TheRoger on Sat 18/06/2011 13:56:51
Wow, I'm a genius. I was trying baseline stuff, with 1000 or -1, but never left default 1.
That solved it, thank you guys.