Jump to content

Search the Community

Showing results for tags 'loading issue'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 1 result

  1. Hello guys, I'm learning how to use Panda.js to create some simple game for iOS. I studied a lot the documentation and finally I create a first simple app that on click hide the image. This app contains the "resizeToFill: true" option for every iOS resolution. This is the config.js pandaConfig = { name: 'MyPandaGame', version: '0.0.0', system: { width: 320, height: 480, maxWidth: 320, maxHeight: 480, resizeToFill: true, retina: true }};This is the main.js game.module( 'game.main').require( 'engine.core').body(function() {game.addAsset('logo.png');game.createScene('Main', { backgroundColor: 0xb9bec7, init: function() { var logo = new game.Sprite('logo.png').center().addTo(this.stage); logo.interactive = true; logo.click = function () { this.remove(); } }});});unfortunately running this code on Safari (iOS) or through phonegap result in a black screen with blank loader (and no errors in console). Any suggestion?
×
×
  • Create New...