Swing Copters...From The Ground Up

3
  • 7 favourites

Index

Attached Files

The following files have been attached to this tutorial:

.zip

swing-copters-assets.zip

Download now 195.54 KB
.capx

swing-copters.capx

Download now 328.31 KB

Stats

14,378 visits, 33,631 views

Tools

Translations

This tutorial hasn't been translated.

License

This tutorial is licensed under CC BY 4.0. Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.

Because we named our layers we just need to type it in. Start with "Background". Try to remember that names must always be between quotation marks. You could also leave it at 0, but names are much easier to remember. Set the visibility to Visible. You might be asking yourself "Why set the layer visible when it is already visible?" This is because when we leave this layout we are going to set all layers to invisible. If we were ever to come back to this layout, the layers will still be invisible. Get it? Now repeat the above for the remaining layers.

To preload our sounds add another action then double click the Audio object. Search for Preload (by name) and in the window leave Folder to Sounds (this is where we imported our sounds) and type in the sound file name between quotation marks. Start off with the first sound file in the folder "coin" and finish with "steer".

When you are done you should end up with this.

[page="

From one layout to another"]

From one layout to another

We will now need a way to jump to the Game layout. This can be done by getting the user's input or by a trigger in Construct 2. For this tutorial, we will have to depend on the user's input. So when the user presses the play game button, we will start the Game layout.

Create a new event, double click on the Touch object and select On touched object. Click to select the obj_PlayButton.

When the user presses the button we want a sound to be played, set all the layers to invisible, wait an amount of time and then start the Game layout.

Add an action to the Touch event and when the window appears, select the Audio object.

Select Play and type in the parameters as shown below.

  • 2 Comments

  • Order by
Want to leave a comment? Login or Register an account!
  • dazedangels We us this counter for the Medal screen. If your score is 10 and you die then on the Medal screen. Start at 0 and increase by 1 every 0.07 seconds until 10 is reached.

    youtube.com/watch

    Check this vid at 0:36.

    Hope this helps.

  • Why are we creating an event in "Game Over" to add 1 to ScoreCounter every 0.07 if ScoreCounter isn't equal to Score? What is ScoreCounter doing, if the game is over?

    "-System: Every X seconds, where seconds is 0.07"

    Thank you.