Topic: WASD
Hi!
When trying to change sponza demo to have WASD it only works for UP:
if isKeyPressed("UP") then
addCentralForce(Player, {0, 6, 0}, "local")
end
Change to:
if isKeyPressed("W") then
addCentralForce(Player, {0, 6, 0}, "local")
end
By some reason back, left and right is always forward with WASD, do I declare these in some other place?