About making a scene contain a word " loading "

Hi

Am working to create a game these days but am wondering of making a scene contains a word " loading " like any game on any device

I hope u understand me :)

Where should i place that scene or is it important to make it ??

Best Answers

  • pHghostpHghost London, UKPosts: 2,342
    Accepted Answer

    You mean "Loading" when you start the game up? If so, you upload the loading screen on the GS Publishing Portal.

  • jeezzcakejeezzcake Posts: 144
    Accepted Answer

    You can try this:

    Suppose you have a boolean game attribute called startGame.

    • create a loading image with "loading..." text in it;
    • cover the main menu scene with this image and set its Alpha to 0;
    • in the loading image actor ( change the gameStart attribute to false, and put a rule that says when gameStart is true set Alpha to 1 else set Alpha to 0);
    • in the main menu scene you have a play button ( put a rule : when touch is pressed change the game attribute startGame to true, and a timer after 1 sec change scene to your game scene);

    Hope i've made my self understood.

Answers

  • ikadikad Member Posts: 58
    edited October 2014

    @pHghost said:
    You mean "Loading" when you start the game up? If so, you upload the loading screen on the GS Publishing Portal.

    Thank you :)
    Yeah . and wt about " loading" between levels or scenes of my game ?
    the same way ?

  • ikadikad Member Posts: 58

    @jeezzcake said:
    You can try this:

    Suppose you have a boolean game attribute called startGame.

    • create a loading image with "loading..." text in it;
    • cover the main menu scene with this image and set its Alpha to 0;
    • in the loading image actor ( change the gameStart attribute to false, and put a rule that says when gameStart is true set Alpha to 1 else set Alpha to 0);
    • in the main menu scene you have a play button ( put a rule : when touch is pressed change the game attribute startGame to true, and a timer after 1 sec change scene to your game scene);

    Hope i've made my self understood.

    Thank you it's work good _

Sign In or Register to comment.