collision concept
  • Hello everybody, I'm new to gameQuery, and I'm trying to understand the concepts of the framework. I did dowonlaod the game "Super javascript figther II" and added only 3 lines in the javascript file "superjavascriptfighter2.js." The line:
          "var
    collided = $ (" # cvs "). collision (" Abobo # ");
             if (collided)
             alert (collided.length); "

    My intention is to test the concept of a collision. But I realized that even touching the fighters for several times during the game, no collision is detected. The lines were placed after this snippet:
    "
    var  centerPos = (al - cl) / 2 + cl;
             scrollStage (- (centerPos-400) * 0.5); "

    What's wrong?

    I appreciate any help.
  • selimselim
    Accepted Answer
    I see many problems with you code, I think you should look at my answers in this discussion: http://forum.gamequeryjs.com/discussion/13/problem-with-collisions#Item_4. It should pretty much answer most of your question. 

    If something isn't clear then don't hesitate to ask!
  • Selim Hello, thanks for the reply. With regard to syntax errors javascript to which you refer were errors in my typing directly in the text box of the forum, following a "copy / paste" of the original code:

            var centerPos = (al - cl)/2 + cl;
            scrollStage(-(centerPos-400)*0.5);
            var collided = $("#cvs").collision("#abobo");
            if(collided && collided.length>0)
                alert(collided.length);

    Many thanks for your help.
    Bessa

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!