How do I achieve space invader movement

0 favourites
  • 8 posts
From the Asset Store
A template for a grid movement , grid tactics type game like Dofus , click on the grid you want to move to and the
  • How do I achieve the downwards movement of the space aliens in the standard spave invader game?

    I can get on alien to move left and right, descending as it goes but I can't get a block of them to do this; well not without the others ultimatelt crashing into each other or loosing position.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Well, what is your current method? Any sample capx?

    Edit: attached a capx.. first idea that came to mind so be nice

  • You basically just need to check if ANY invader has reached a certain coordinate (left or right). At that point, ALL invaders make the downwards movement and change direction.

    Check the entire batch of aliens (with them all picked) to see if any has reached that point. If any were picked, you can set a variable and then in the next event, reverse the aliens if that variable is set. Alternatively, you can use a family to avoid the use of the variable, but it's a bit more complicated.

  • Yeah that's the approach I took in the capx (well I used collision with a sprite instead of raw coordinates). He seems to have the free edition, so no families.

  • Excellent, so easy when you see how I was missing the "Pick All" part so was battling with multiple objects. Got the full version but don't like using the premium parts because then my students can't use them at home - but I do tell them about things like families in case they purchase.

    Thanks again

  • Ah yes. Families are very useful in situations where you've already picked one object and then suddenly require all of the same objects in the subevents (you can't access them because you've already picked one). For example where you need to compare a value of one object against all of the same type of object. You can do it with variables but families are nicer usually.

  • Using the initial CAPX file as a guideline I created the following using bullet behaviour. Yip families would be much better for sure

  • Perfect

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)