Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: geork on Sun 25/04/2010 20:26:11

Title: objects over hotspot?
Post by: geork on Sun 25/04/2010 20:26:11
 Hey all!
  sorry if this is a stupid question, but It's the only explanation I could think of...
  I have an object exactly where a hotspot is, but it isn't visible. The hotspot works fine. Then, after a certain event, the object becomes visible, and the hotspot stops responding to my clicks. I'm 95% sure this isn't a coding problem
  Is the object blocking out the hotspot? if so, how can I prevent it?
  Thanks
Title: Re: objects over hotspot?
Post by: Calin Leafshade on Sun 25/04/2010 20:35:29
like this:


oObjectName.Clickable = false;
Title: Re: objects over hotspot?
Post by: geork on Sun 25/04/2010 20:41:45
 Thanks! works now ;)