Jump to content

Search the Community

Showing results for tags 'itch.io'.

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

  1. We just finished up our puzzle game Implosion. It was originally made for Ludum Dare 48 and has since been refined and polished. We added tons more content and have plans to sell the game (any advice on who to contact there would be greatly appreciated). It is a puzzle game built around moves cascading down through layers. You have to strategically move knowing that each layer below the current one will result in a loss. It was made using Unity then built into an html5 game. There is no ads in this version of the game so enjoy the puzzles!
  2. Now renamed 'Alien Step', is a grid-based action puzzler web game. You play as an alien collecting orbs to beat the levels. Official release v0.9 will be released in this October. But first try my demo (actually named 'Alien Maze Demo #2' before ) ? It comes only 16 levels + 3 tutorial levels (demo only) https://allentthesnouty.itch.io/alien-maze-demo2
  3. Hey. I need help, I've been banging my head against this for hours. I've been scaling my game to fit screens on all devices, while maintaining the asset ratios. The game size increases so the controls work where ever you touch. I've run into an issue with Android/Chrome and itch.io. I'm not sure if it's specific to the browser, or the site, or mobile. It might be a full screen mobile issue all together, but I'm testing it on itch and an android with chrome. The first time the game loads it scales and works perfectly. Then, if I refresh the page or visit it later this happens: The game gets put into the view port ratio set in Itch, and doesn't adjust like it should in fullscreen. This being 640x960. 2:3 ratio, the screen has a higher Y axis. This causes the white bar at the bottom which is unresponsive to the touch controls. I've removed the padding in CSS: <style> html { margin:0; padding:0; } body { margin: 0; padding: 0; } #canvasholder { width: 99vw; height: 99vh; margin: 0 auto; } </style> and my canvas code looks something like this: // ~A Canvas and Game Setup aspect_ratio = window.innerWidth / window.innerHeight; testWidth = 960 * aspect_ratio; //if the aspect ratio stretches the Y axis if (testWidth <= 640) { var canvasWidth = 640; var canvasHeight = 640/aspect_ratio; } // else if it stretches the X axis else { var canvasWidth = 960 * aspect_ratio; var canvasHeight = 960; } //test versions //var canvasWidth = 640; //var canvasHeight = 960; var game = new Phaser.Game(canvasWidth, canvasHeight, Phaser.CANVAS, 'game', { preload: preload, create: create, update: update }); function create() { // ~2.1 Game Scaling game.scale.fullScreenScaleMode = Phaser.ScaleManager.SHOW_ALL; game.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL; game.scale.refresh(); Maybe I've over complicated the original solution? This worked the way I intended on Desktop tests. You can test it yourself here: https://flopshotqq.itch.io/screen-scale-test Thanks so much, any help is appreciated.
  4. Hello, This game was made with Phaser framework, P2 Physics, Howler.js, localForage, phaser-ads plugin and wrapped with CocoonJS Google Play: Truck Reign Itch.io: https://alex-creativity.itch.io/truck-reign YouTube: Truck Reign Any feedback would be greatly appreciated!
  5. Jake - Life speedrun is a game where you are running through your life. All the way from being a sperm cell to an old man to the grave. Basically you have two goals: Survive and do it as fast as possible. games inspirers have been happy wheels and super meat boy. The game we made has been done with passion and with a zero budget. We recommend you to try it out. You are going to enjoy the gameplay and its' story filled with rough humor. Game has been made with Phaser.io and pc version has been converted to .exe from html. It is also on Google Play! Lest make phaser game most downloaded at itch.io. Now we are at top 15 on funny games category and with your help we can raise even more. Heck, you can even just go press download and delete file instantly if you dont want to play our game. Download links: itch.io (.exe) : https://jakespeedrun.itch.io/jake-life-speedrun Google Play: https://play.google.com/store/apps/details?id=jake.lifespeedrun.mainos Here's also a 'RadiCarl's playtrough of JAKEs life: https://www.youtube.com/watch?v=oIZDm1FwK6w Facebook: https://www.facebook.com/JakeLifeSpeedrun twitter: https://twitter.com/jakespeedrun Have nice playing sessions with JAKE - Life Speedrun! Yours Team Jake =)
×
×
  • Create New...