Tagged Questions
0
votes
0answers
15 views
Box2D collision causes huge FPS drop
I'm playing with Box2Dweb and HTML5 canvas, and are experiencing some odd behaviour.
I have one dynamic body and one static body, in the world. I can control the dynamic one with my keyboard.
But as ...
2
votes
0answers
47 views
How to avoid ghost collisions in box2dweb
I'm using box2dweb to create a game, but want to have an uneven ground in my game. However, box2dweb isn't up to date and doesn't contain edge chains to fix ghost collisions yet.
Currently, my ...
0
votes
0answers
36 views
special effect at the time of collision of two box2d objects
I want to give some special effect at the time of collision of two box2d objects so that one of the object gets destroyed into chunks. Please tell me how to do this using javascript.
0
votes
2answers
84 views
How to use simple graphics with box2d?
world = new b2World(
new b2Vec2(0, 0) //gravity
, false //allow sleep
);
bodyDef.type = b2Body.b2_dynamicBody;
for(var i = 0; i < 1; ++i) ...
1
vote
0answers
60 views
Box2dWeb missing ApplyLinearImpuse() and ApplyAngularImpulse() methods?
I have been trying to get to grips with HTML5 game writing coming from an XNA / Farseer background.
It seems that box2dweb is missing ApplyLinearImpuse() and ApplyAngularImpulse() methods.
I have ...
0
votes
1answer
228 views
Positioning Circle Shapes within a Body in Box2D Web
I've had to completely revamp this question as I don't think I was explicit enough about my problem.
I'm attempting to learn the ropes of Box2D Web. I started having problems when I wanted to learn ...
0
votes
1answer
233 views
Using directBox2D with directCanvas - AppMobi
I am busy looking for an easy solution using the Box2D physics engine in directCanvas... without using ImpactJS or any paid for framework.
My end goal is to build a HTML5 game for Mobile ...
0
votes
0answers
86 views
box2d & html5 animation with final state known
I already played a bit with html5 but especially with box2d.
I'd need to make an animation of objets with physics using html5 & box2d in which I want some objects to be in a particular place on ...
0
votes
2answers
2k views
Box2DWeb - Adding and Removing Body in the world
I have the following code in Box2D, I want to move my dynamic body to the point where the mouse is click. Also in the future i want to be able to remove the dynamic body, I am not able to find ...
6
votes
6answers
564 views
Add existing SVG or HTML5 Elements to a Box2D World
I have an SVG logo made up predominatly of elements. I want to animate this, or more specifically drop it into a "gravity world". I was hoping to use Box2D (web port).
I'm a noob to Box2D and Canvas ...
0
votes
0answers
411 views
Which Javascript 2D game engine should I use? [closed]
I want to create a multiplayer and 2D browser game in javascript and html5. Which game engine should I use with node.js and box2d?
I want one with well-documented and much examples, tutorials.
4
votes
1answer
1k views
Box2dweb - Collision Contact Point
I use box2dweb. I am trying to develop a game. At some point I need to find out the contact point between a "Circle" and "Box". All I know is it can be done using b2ContactListener. We can receive ...
0
votes
2answers
748 views
Box2dweb - Rope Joint is not working
I have the following code for Rope Joint (Box2dweb). The problem is that when I run the code in my browser nothing happens. Just a blank canvas. When I delete the lines defining the joints (the eight ...
1
vote
0answers
266 views
create joint to fix body to another body with box2d
I want to create a catapult fixed to the ground beacause i will rotate it later using mouse joint this is my code to fix catapult_arm to the ground
{
var revJointDef = new ...
0
votes
0answers
98 views
Calling a function after an event
I am making a local two player pool game and I am having problems with the player's turns. So far, the only way the change turns during the game is to drop the cue ball into a pocket. When I drop the ...
1
vote
1answer
345 views
Box2D: Setting more than one b2ContactListener to world? - Getting weird behavior
So I am very new to Box2D and I'm trying to figure out how to use b2ContactListener.
Are you allowed to set more than one Contact Listeners to a world? I would think so. But when set two contact ...
4
votes
3answers
1k views
Is there a way in Box2dWeb to output position.x of an object to console.log()?
I am thinking there is a simple answer to my seemingly simple question but I could be totally wrong. Anyway I am new to box2dWeb and in my Box2dWeb world I create a floor and a simple falling object. ...
0
votes
2answers
949 views
box2D (javascript)
I am just getting started with box2d. I am able to create some objects and create a world in which to use those objects. For example, to create a box (taken from: ...
3
votes
2answers
623 views
Developing for HTML5 canvas using Box2D engine but NOT in Javascript
Basically I have the following constraints for an upcoming project/game:
Drawing should be done in the HTML5 canvas element
Use the Box2D physic engine (or equivalent physics engine)
Game logic (and ...
4
votes
7answers
4k views
HTML 5 game development tools
Can anybody please guide me with the best engine for game development in HTML5?
It is simple jumping and surface detection game. The theme is like jumping and go above the tree tops.
What you ...
4
votes
2answers
1k views
box2d-js element with external image
So far in the samples of varies box2d js implementation I can find only element defined in shapes (ball/box/etc), is there a way to create an element defined by an image, e.g. a boulder?
0
votes
2answers
890 views
Box2dweb, shifting the canvas?
I'm currently working on a game with html5/js, using box2dweb for the collision but I'm running into the issue where I am required to scroll the level with the player. Box2d renders directly to the 2d ...