Looking for any examples of a fluid playground width for responsive gaming

edited October 2013 in Support
I'm looking for any kind of gameQuery examples, API, tutorials on building a fluid playground width(), so that the playground can be 100% width of it's parent container. This will help me build a responsive gaming platform for mobile purposes. Is there anything out there that will show us this or provide instructions?

Thanks

Comments

  • Accepted Answer
    If you want the player to be able to change the size of the game view after the game as started I'm afraid you will run into some problems for example tilemaps may not render as expected.

    However If you just want the size of the playground to be the same as the current windows at the moment of the page loading this is easy. Just do something like this:
    $("#myPlayground).playground({
    width: $(window).width(),
    height: $(window).height()
    });


    Another solution is to define a fixed size for the playground and apply a CSS transform to scale it. This will make the pixels looks bigger but you will be able to change it during the game.
Sign In or Register to comment.