Jump to content

SHOW_ALL Causing Error


iShellz
 Share

Recommended Posts

I have been using tips from  this thread http://www.html5gamedevs.com/topic/2273-phaser-cocoonjs-vs-webgl-scaling-finally-solved/ in my game that i am sending through CocoonJS and receive an error when using Phaser 1.2 about SHOW_ALL no being valid.  It specifically points me to this block. 

        var ratio = getRatio('all', 320, 480);        if (navigator.isCocoonJS) {            game.world._container.scale.x = ratio.x;            game.world._container.scale.y = ratio.y;            game.world._container.updateTransform();        } else {            game.stage.scaleMode = Phaser.StageScaleMode.SHOW_ALL;            game.stage.scale.minWidth = 320;            game.stage.scale.minHeight = 480;            game.stage.scale.pageAlignHorizontally = true;            game.stage.scale.setScreenSize(true);        }
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...