ImpactJS is a JavaScript Game Engine that allows you to develop stunning HTML5 Games for desktop and mobile browsers.
1
vote
1answer
78 views
Disable collision on the fly in Box2D: does not work when entity is already colliding
I'm writing a game with impactjs and i'm using Box2D as physics-engine (Box2DFlash to be specific). So there is a move off the player where he should not collide with the enemys. To achieve this ...
1
vote
0answers
145 views
Can Impact.js be used to create a first person shooter game [closed]
I want to create a first person shooter game suing javascript/html5.
I have already purchased the impact.js engine for evalulation and was wondering if it was possible to create fps games with it, ...
3
votes
1answer
66 views
Why won't my sprite/entity move in a straight line?
My entity is supposed to move in straight line toward the mouse. It's close, but not quite there yet. Here's a working demo to show you what I mean.
And here's a screenshot:
The red represents the ...
1
vote
1answer
44 views
User input initials - ImpactJS
So on my end state I want to have the user input their initials. I have setup an array that has all the alphabet, triggers to select a letter and font_draw, but I cant seem but I get an error saying ...
1
vote
1answer
121 views
Animating a path between two objects on HTML5 canvas
We're developing a game with impactjs that allows 'chaining' of entities as they are clicked. Basically this just draws a line between the two points, with a neon glow effect. So far, so good. Now, ...
5
votes
1answer
621 views
Angular JS for game UI
I am currently building a web game using html5 and the Impact JS game engine. I want to overlay html components over the top of the canvas/impact engine, and I was looking for some frameworks that ...
1
vote
1answer
92 views
syntax error being thrown when i use jQuery.ajax to fetch a script
I have the following code:
$.ajax({
beforeSend: function () {
console.log("fetching script");
},
url: "../../../scripts/review-level-" + ig.game.currentLevel.toString() + ".js",
...
1
vote
1answer
150 views
ImpactJS Collision
I have several questions about using "correct" for the layer collision.
Is it possible to make a bot from a point A using a collision tiles available? For each map, I want to make a bot from point A ...
4
votes
2answers
228 views
Attempting to get two simultaneous joysticks working with touch events
I've been battling with this for two days. I'm using an HTML5/JS game engine called ImpactJS and someone made a very useful plugin to create joystick touch zones for mobile devices. The idea is that ...
0
votes
1answer
453 views
iPhone 5 and full canvas width
Okay, so my iPhone 5 arrived (I live in Australia and am lucky to have it before the US) and the first thing I wanted to do was take full advantage of the 88 pixels of extra width for my 2D platformer ...
0
votes
1answer
138 views
Make entity bounce off according to angle and speed
What I want to do is bounce an entity off of a paddle and have it react to the speed of the paddle as well.
So like in the old break out games, the faster you move the paddle the more obtuse the ...
3
votes
1answer
300 views
Make Entity bounce off another entity in ImpactJS
I have a Player Entity that is governed by gravity and I have another entity at the bottom of the screen that moves around.
When my falling player entity hits the entity at the bottom I want it to ...
