Scrolling Game Development Kit Forum
SGDK Version 1 => General Discussion => Topic started by: bat on 2006-07-28, 01:03:58 PM
-
how would i make a targeter thing to aim with right in front of a character (mario type side scroller)?
like in this game (worms2):
(http://www.worms2.com/images/supp/pic.gif)
-
controled by the mouse or the keyboard?
-
either or...
but keyboard would be best
-
would having an object (targeter) follow the player work?
-
even just a "snap to" left,right and above would be ok
-
Is scripting an option here? Because you could make a script that detects when you are pressing left or right, and if you are, it can continuously decrease the angle or increase the angle. Then to position the "targeter sprite" you get the location of the player sprite and add some offset like this:
TargetSprite.X = PlayerSprite.X + Cos(AngleRadians) * 100
TargetSprite.Y = PlayerSprite.Y - Sin(AngleRadians) * 100
As the player presses left or right, you would increment or decrement AngleRadians by small amounts like:
AngleRadians = AngleRadians + 3.14159265 / 18
-
cool! that's wut i was looking 4! thanks. ;)