Hai I am Developing a Dragon Booster Game. The Game is first person racer game. if space pressed the camera wants to move. I am waiting the reples.
i Know my english grammer was worse.Sorryyyyyy for inconvince
Make A model Jump
You get the player(scene node) position
in your run() method get the position value
regards
anandh
Code: Select all
core::vector3df p = player->getPosition();in your run() method get the position value
Code: Select all
p = player->getPosition();
//check for the key pressed (jump key)
p.Y+=spd;
//finally
player->setPosition(p);
anandh