Game Development Community


#1
07/06/2005 (10:47 pm)
Fire up your game, hit the "~" (tilde) key to bring up the console, scroll through the console and check if you have any red text, these will signify syntax errors... also it would be helpful if you copied your console.log and pasted it here :)
#2
07/06/2005 (11:38 pm)
function setupT2DScene()

}

should be?

function setupT2DScene() {

}
#3
07/07/2005 (7:49 am)
Is your definition of playerUp all on one line of code like you have posted? You need to break it on to two otherwise you're commenting out the actual work.

// Set the player moving up.
$player.setLinearVelocityY( -10 );
#4
07/07/2005 (7:55 am)
Ok :) If it doesn't work feel free to either post your entire client.cs or e-mail it to me and I'll check it.