Phaser Tips & TrickssteemCreated with Sketch.

in #programming7 years ago
Do you have a tip you'd like added ? Post in the comments below or send me an email.

What is Phaser?

Phaser is a fast, free and fun open source HTML5 game framework. It uses a custom build of Pixi.js for WebGL and Canvas rendering across desktop and mobile web browsers. Games can be compiled to iOS, Android and desktop apps via 3rd party tools like Cocoon, Cordova and Electron.

Along with the fantastic open source community Phaser is actively developed and maintained by Photon Storm Limited. As a result of rapid support and a developer friendly API Phaser is currently one of the most starred game frameworks on GitHub.

Thousands of developers worldwide use it. From indies and multi-national digital agencies to schools and Universities. Each creating their own incredible games. Grab the source and join in the fun!

On to the Tips...

  • When using tweens, set the value to a string instead of a number to make the tween relative to the current value.
    var style = { font: "65px Arial", fill: "#FF0000", align: "center" };
    var text = game.add.text(game.world.centerX, game.world.centerY, "PHASER!", style);
    text.anchor.set(0.5);
    text.alpha = 0.5;

    //This will tween the alpha to 1 since the alpha starts at 0.5 and the value was used as a string.
    game.add.tween(text).to( { alpha: "0.5" }, 2000, "Linear", true);
    //This will do nothing, since the alpha is already 0.5.
    game.add.tween(text).to( { alpha: 0.5 }, 2000, "Linear", true);
    //This will do tween the alpha to 1, but is more verbose than just using the string.
    game.add.tween(text).to( { alpha: text.alpha + 0.5 }, 2000, "Linear", true);
  • When working with pixel art set roundPixels to true to prevent Phaser from rendering graphics at sub pixel locations (which causes blurring)
    game.renderer.renderSession.roundPixels = true;
  • When you need to set a property on all children in a Group, don't use a loop, simply use setAll.
    group.setAll("property.evenSubPropertiesAreSupported", value);
  • Need the benefits of using a sprite as a container and a group just wont cut it? Use a blank sprite!
    //This leaves the sprite frame, sprite sheet ID, and parent group blank;
    //Adding the sprite to the world.
    var sprite = game.add.sprite(0, 0);

    //This leaves the sprite frame, and sprite sheet ID blank;
    //Adds the sprite to the specified group.
    var sprite = game.add.sprite(0, 0, undefined, undefined, group);
  • Destroying an object in the onComplete callback of a tween being performed on the object will cause errors. You can either kill the object (does not destroy the object or remove it from memory), or delay the destroy call by one frame using pendingDestroy.
    //Causes errors
    game.add.tween(sprite).to({ alpha: 0 }, 1000, 'Linear', true).onComplete.addOnce(sprite.destroy, sprite);

    //.kill method
    game.add.tween(sprite).to({ alpha: 0 }, 1000, 'Linear', true).onComplete.addOnce(sprite.kill, sprite);

    //.pendingDestroy method
    game.add.tween(sprite).to({ alpha: 0 }, 1000, 'Linear', true).onComplete.addOnce(function () {
        sprite.pendingDestroy = true;
    });

    //or

    game.add.tween(sprite).to({ alpha: 0 }, 1000, 'Linear', true).onComplete.addOnce(function () {
        this.pendingDestroy = true;
    }, sprite);
  • Have a full screen background? Set Phaser.Game.clearBeforeRender to false to get rid of the un-needed clear screen draw call.
    game.clearBeforeRender = false;
  • Making a production build of your game? Disable Phaser.Debug to get rid of the un-needed empty texture draw call (Even if you are not using Phaser.Debug at all (which you should never do in production anyway) an empty texture is drawn.)
    var config = {
        width: 800,
        height: 600,
        enableDebug: false // this flag right here!
    };
    
    var game = new Phaser.Game(config);
Doing the previous 2 tips, you can possibly get your game down to a single draw call! Without them the minimum draw calls you can get is 3.
Sort:  

Hi! I am a robot. I just upvoted you! I found similar content that readers might be interested in:
http://rroylance.github.io/phaser-tips-post/

Weird... steemit messes with mailto links and breaks them completely... it was fine when it was written. Sorry about that.

Here is the proper email; [email protected]?Subject=Phaser%20Tip%20Suggestion

Congratulations @uncleacid! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 2 years!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Vote for @Steemitboard as a witness to get one more award and increased upvotes!