Need help with simple questions...

edited July 2013 in Support
Hello,
first i`m sorry for these simple questions but it`ll help me...
My first question is how to do simple move WASD. I tryed to understand it in this tutorial but I`m don`t understand it. http://gamequeryjs.com/documentation/first-tutorial/
My second question is how to collide player with map layers like in this image http://opengameart.org/sites/default/files/archive/tiled-qt-screenshot-3.png

Thanks alot for answers..
Hello from Czech Republic, Kenny

Comments

  • The questions you ask are very broad so it will be difficult to give you a complete answer...

    For the player movement you could use a code that looks like that:
    if($.gQ.keyTracker[65]){ //this is left! (a-65)
    player.left();
    }
    if($.gQ.keyTracker[68]){ //this is right (d-68)
    player.right();
    }
    ...


    This code will probably be in a registered callback.

    For this to work you have to define keyTracker: true in the option for your playground.
Sign In or Register to comment.