ActionMap is dead in MiniPlatformer Tutorial
by Kenny · in Torque Game Builder · 03/05/2007 (8:03 pm) · 1 replies
I can press SPACE to jump,but RIGHT and LEFT is dead.
Why? i checked the script several times
Why? i checked the script several times
Torque Owner Victor Tan
function playerLeft()
{
$pGuy.moveLeft = true;
$pGuy.updateMovement();
}
function playerLeftStop()
{
$pGuy.moveLeft = false;
$pGuy.updateMovement();
}
Hope that helps.