So basically I am trying to test C2 by making a very very simple sort of bullet hell shooter.
Working out okay so far figured out shooting and movement for the player but i can't figure out how to get an "enemy" sprite to spawn and then always be trying to reach the players sprite?
for example every 1 seconds get the enemy ship to create another sprite that has the behavior bullet and then set that buttlets angle to that of the player ship. I use angle(x1, x2, y1, y2) X is the bullet and Y is the Player.
I think that should do it :)
Develop games in your browser. Powerful, performant & highly capable.
Thanks but i don't get this bit:
I use angle(x1, x2, y1, y2) X is the bullet and Y is the Player.
Bear in mind this is my first proper time using it.
Correct me if I'm wrong.
Just as KSLR said, but:
Event: Every tick -> Enemy -> Set angle toward position ->
X = Player.X
Y = Player.Y
And for the spawn "ship" thingy
Event:
Every X seconds -> Ship -> Spawn another object -> Enemy
Hope this cleared things a bit.
and......
every 0.01 sec move "enemy" 1 pixel toward position player.x player.y