Re: How do I get the position offset for placing X off the map?
Hmm. Let me see. If I remember correctly, you could use this:
Code:
for actor in MovableMan.Actors do
alpha = SceneMan.SceneHeight;
actor.Pos.Y = (alpha/2) + 10;
end
Not totally sure, but should work.