Search found 2 matches

by SkyBlizard
September 21st, 2017, 10:46 am
Forum: Everything
Topic: Episode 4.3 messed UP PLEASE HELP
Replies: 4
Views: 2005

Re: Episode 4.3 messed UP PLEASE HELP

Yumtard wrote:You're doing if (wnd.kbd.KeyIsPressed(VK_LEFT)) twice bro

Change second one to VK_UP
Thanks but its still not increasing its speed everytime i press a key..
by SkyBlizard
September 21st, 2017, 9:58 am
Forum: Everything
Topic: Episode 4.3 messed UP PLEASE HELP
Replies: 4
Views: 2005

Episode 4.3 messed UP PLEASE HELP

Hello i did everything correctly and the reticle moves only UPWARDS AND RIGHT SIDE Its not moving Left and Down side...help me.. void Game::UpdateModel() { if (wnd.kbd.KeyIsPressed(VK_RIGHT)) { if (inhibitRight) { } else { vx = vx + 1; inhibitRight = true; } } if (wnd.kbd.KeyIsPressed(VK_LEFT)) { if...