Ok, another post by me This one is probably the most frustrating problems i have had. Im making a game called GYRMS. Everyone is throwing around grenades, molotov coctails, bombs, bullets, blah blah. Amazing i can do that but i still can figure out the game menu. There is a begin button and when i click it, i want the view to center on the mAJOR gYRM(PLAYER) but unfortunately, it doesnt and whenever the game starts, the view starts dropping down. A pretty confusing problem eh? Thanks Twigser
after reading this you have just realized you have wasted 5 seconds of your life.
Unlike regular actors the view's "center" is actually the top left corner. If you code: view.x=player1.x; view.y=player1.y; this makes the center of actor player1 goto the top left corner of the view. To adjust for this you need to add half of your screen size to the view position for both x and y.