Play game button - fb instant games

0 favourites
  • 2 posts
From the Asset Store
A set of board games to make your day joyful. Play, Enjoy, Relax
  • Hello, I'm developing a game for the facebook instant games platform and I need to add a preloader in the

    using the API.

    I did everything correctly, but I'm having trouble adding

    the blue "play now" button (Image: imgur.com/a/YmggUIP%C3%82%C2%A0) to make the game start only after

    the user clicks this video button: https: //youtu.be/Sjj_UKX549A

    Anyone who knows the facebook api could tell me the correct way to add this button?

    HTML

    <!DOCTYPE html>
    <html manifest="offline.appcache">
    <head><script src="https://connect.facebook.net/en_US/fbinstant.6.0.js"></script>
            <script src = "game.js"></script>
    </head> 
    
    <body> 
        GAME
    </body> 
    </html> [/code:31mjocj0]
    
    game.js
    
    [code:31mjocj0]FBInstant.initializeAsync().then(function() {
        FBInstant.setLoadingProgress(100);
        Module._fbinstant_inited = true;
        FBInstant.startGameAsync().then(function() {
            var windowWidth = window.innerWidth;
            var windowHeight = window.innerHeight;
            if(windowWidth > windowHeight){
                windowWidth = windowHeight / 1.8;
            }
            var gameWidth = windowWidth * gameOptions.gameHeight / windowHeight;
            game = new Phaser.Game(gameWidth, gameOptions.gameHeight, Phaser.CANVAS);
            game.state.add("Boot", boot);
            game.state.add("Preload", preload);
            game.state.add("TitleScreen", titleScreen);
            game.state.add("PlayGame", playGame);
            game.state.start("Boot");
        })
    })
    
     FBInstant.startGameAsync().then(function() {
      // Here we can be sure the player has already tapped play.
      myGame.start();
    }); [/code:31mjocj0]
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • that button automatically appears when you post the game on instantgames platform, and is detecting the facebook server (that button is part of the default instantgames C2 plugin when detects loading of the app), you should see a loading from 0 to 100 and a play now (however the play now button will just load things in a faster manner, is like 1 second difference). for me was automatically you don't need to do nothing else, but to correctly implement your instantgames developers dashboard app settings, from what i seen and experienced.

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