Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I import and attach a PNG or GIF to a shape in Box2dWeb?

The best resource I could find online is at: http://www.jeremyhubble.com/box2d.html

However, this "tutorial" doesn't give much explanation about how images are actually used. So it is clearly possible, but I can't get the userData trick to work.

share|improve this question
Hey @Derek that article doesn't quite answer my question. In fact, he seems to be having the same problem and no one was able to answer it. How does one attach an image, NOT make a polygon. :D – VinLucero Apr 15 '12 at 7:21
Maybe it is impossible at this time? Anyway, I know Angry Birds is using Box2D in their HTML5 version and I know it is possible. – Derek 朕會功夫 Apr 15 '12 at 20:53

2 Answers

up vote 1 down vote accepted

I've answered this for you over on gamedev now (along with an example), but here's the bottom line:

You are generally responsible for rendering the state of your box2d world - the "userData trick" you refer to is not really to do with the box2d framework.

userData is a placeholder for arbitrary data that you want to associate to a body. This could be anything - a string, function, object, etc. This data is typically used to help you render your world during the update loop, which is exactly what the resource you linked to does - If you look at the processObjects function it uses the imgsrc value to create an Image object and draws it onto the canvas at the correct location. (This isn't really a good idea because the image is created once per object per iteration - I would suggest it should only be created once)

share|improve this answer
Thanks! I really appreciate your help. – VinLucero Apr 25 '12 at 21:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.