Jump to content

Search the Community

Showing results for tags 'phaser 1.1.4'.

  • 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 3 results

  1. Hello, last summer I've created a game in flixel (http://ictbram.com/starfighter) I'm trying to port it to phaser so it works on mobile browsers. It started alright. I managed to get the plane moving on my ipad's screen For organizing my code a bit I used the basic template that is in the resource templates of phaser 1.1.4 It works in firefox and chrome for desktop, but nog longer on mobile browsers Not on an ipad, not on chrome for android. It starts bootstate and preloaderstate but does not seem to run the update function of that states. The update function of preloaderState should start 'MainMenuState' like the template. I've tested it with emulation mode (http://www.sitepoint.com/use-mobile-emulation-mode-chrome/) in chrome so I can see a console and chose a nexus 5, but it simply does nog execute the update function of PreloaderState.js It does work on desktop, can someone help me with this problem? I've put in online over here: http://ictbram.com/phaserStarFighter
  2. Using phaser 1.1.4, I want to create a square. This square will be the player. I don't want to have to import an image. I came from flixel, in which I could create a square, give it a color. Everything I've read seems to indicate that I'll have to import an image for a sprite. Can I just create it programmatically without needed external assets, or must every sprite have an image?
  3. As you can see drawRect produces some strange shape which is definetely doesn't look like rect But drawCircle works perfectly. I'm using Typescript + phaser 1.1.4 + definitions file from dev branch var rectGraphics:Phaser.Graphics = this.game.add.graphics(100, 40);rectGraphics.beginFill(0xfff000);rectGraphics.drawRect(0, 0, 40, 20);rectGraphics.endFill();var circleGraphics:Phaser.Graphics = this.game.add.graphics(200, 40);circleGraphics.beginFill(0xfff000);circleGraphics.drawCircle(0, 0, 20);circleGraphics.endFill();
×
×
  • Create New...