-
Content Count
46 -
Joined
-
Last visited
About AbdSab
-
Rank
Advanced Member
- Birthday 05/17/1995
Profile Information
-
Gender
Male
-
Location
Here
-
Interests
All thing i like ...
Recent Profile Visitors
1476 profile views
-
Hady Hayman reacted to a post in a topic: Forum Banner Contest
-
Stephan reacted to a post in a topic: Forum Banner Contest
-
I know it's not good but i just want to try:
-
Thank's for testing the game BdR, and for your advices, i already have in mind to add another elements it just need a lot of work I will also try to change the graphics like you said, thank's again for your advices
-
Thank's for your comment, about the mobile i didn't tested if it is working, i don't have a smartphone ,and the game freeze at level 13 because there is actually just 12 levels for the moment Thank's for feedback, I've used Phaser Thank's for feedback, and about the link i have no idea why it don't work when clicking PS: it's working now i've changer the host.
-
Hi all, I want to share with you my wip phaser game : Blockz. The concept of the game is simple, go to the goal, some screenshots can describe more text. (move with arrow keys or by moving your mouse/finger to the direction you want) Link to the game : http://rocket.byethost9.com/Blockz/ Actually there are some bug and there are just some levels for testing, the game isn't finished yet, i just want your opinion and advices of this game And thank's for testing.
-
Hi all, i just want to share with a serie of tutorials to make an Html5 without any framework, just using the canvas, So without talking alot here is the part 1: If you liked the style of this video you can find the other parts in the channel: And thank's for watching
-
- canvas
- javascript
- (and 4 more)
-
Hi guys, I just want to know what is the framework which is optimized for mobile, i've used Phaser to make a game but it is very slow in mobile, is there any other framework that work perfect for mobile ?
-
So, you are speaking about framework, but what about softwares? like Construct, because of it, a big percent of html5 games are made with it, and with his drag and drop system, the making of games is easy, no need to know programming and alot of things, that is a big reason why HTML5 games is decreasing.
-
From the release of the HTML5 to now, a lot of frameworks and softwares such as GameMaker, Construct, Phaser..., are appeared along this periode, and now the price of a game is between 500-1000$ for you, what if there is no framework and no software, what if there is just pure javascript, what do you think the price of a HTML5 games ?
-
Cool, by the way i saw your blog, you have very nice games keep going
-
Thank's a lot, can i use them even in comercial games ?
-
I'am using Avast 5
-
Hi all, Recently i have installed Tiled Map Editor, but after installation my anti-virus tell me that it is a virus. I have downloaded it from the official site, should i desactivate my anti-virus, and continue normally? or there is really a virus ?
-
Anyway thank's a lot for your help
-
It's not working, but assingnig these functions to the player's object work fine. It's just i'am confusing the English enemy with the French ennemi, English is not good on it.
-
I've done what you say but when i click at the button nothing happen, I think i have to make a player's object that hold all these functions. Like that: Game.Combat.prototype = { create: function() { ennemy = this.add.sprite(100,10,"ennemy"); player = this.add.sprite(10,10,"player"); player.moveToEnnemy = function() { var tween = this.game.add.tween(player); tween.to({x:ennemy.x-32, y:ennemy.y}, 1500, Phaser.Easing.Cubic.None, true); }; player.moveToStart = function() { var tween = this.game.add.tween(player); tween.to({x:PLAYER_START_X,