-
Content Count
16 -
Joined
-
Last visited
About Juan
-
Rank
Member
- Birthday December 21
Profile Information
-
Gender
Male
-
-
-
Phaser 3 now has rounded rect support. https://labs.phaser.io/edit.html?src=src\game objects\graphics\fill rounded rectangle.js https://labs.phaser.io/edit.html?src=src\game objects\graphics\stroke rounded rectangle.js
-
-
Could you show more of your code? where is that addSprites function? What about this? socket.on("newSprites", addSprites); // usage: addSprites(this, somedata) function addSprites (_this, data){ sp = data _this.add.sprite(58, 84, sp.name) }
-
Try this socket.on("newSprites", addSprites); var _this = this function addSprites (data){ sp = data _this.add.sprite(58, 84, sp.name) }
-
-
-
Juan started following overlap, Detect circle collision inside shape, Second level for Adventure of Ryan Hunter is finished and and 1 other
-
It works, but the thing is that I'll be using complex shapes, I used this one so you could get my idea.
-
-
-
This is for a game. And yeah. Whenever I load it the circle goes out the shape.
-
Hello, This is what I'm trying to do: I have a draggable circle inside a shape which collides with its edges (the shape's edges). Any idea of how I can achieve this? I tried using P2 physics with both sprites, but I couldn't make the circle stay and collide inside the shape.
-
-
Second level for Adventure of Ryan Hunter is finished
Juan replied to TweakNow's topic in Game Showcase
Hey there, Nice game! I'd just improve the way the character jumps. It should let us move (left, right) while it's jumping, otherwise, it makes it harder for us to jump into the platforms since the jump is inaccurate. -
-
-
Shouldn't the clouds effect be disabled on this one? Since it has a snowing weather.
-
-
-
-
The killcoin function is expecting two arguments but you're giving it none... function killcoin(coin,player) { coin.kill(); } This code line game.physics.arcade.overlap(coin, player, killcoin(), null, this); Should be like this game.physics.arcade.overlap(coin, player, killcoin(coin, player), null, this);
-
-
I'm not a big fan of puzzle games tbh, but this one is cute, though. Good job.
- 4 replies
-
- non exlusive
- arms
-
(and 3 more)
Tagged with:
-
Played it all night long! Very nice and entertaining game.
-
Hello, everyone! This is Hit Moles, my first game. This game is about hitting as many moles as you can in the limited time (1 minute). There are two more characters which are a cactus and a rabbit. When you hit the mole, you score 5 points, when you hit the cactus, it subtracts 5 secs in the countdown timer, But hitting the rabbit will add 5 secs. Preview Demo Feedbacks would be pretty appreciated.