I am creating my own version of "Block Breaker" from this tutorial Here but the problem i am having is that my "paddle" does not move when i move my mouse. Here is my code, i tried it exactly how he has written it using "paddle" as the variable, i made sure my object name was the same in the properties as well and it did not work. So i changed the variable name and the object's name to match but nothing is working... Is this code outdated and no longer works or am i just doing something wrong? Here is my current code.
wade.stopAudio(wade.soundtrack);
wade.playAudioIfAvailable('Crunch Sound.mp3');
wade.loadScene('scene2.wsc', true, clearScene = true, function()
{
// the scene has been loaded, do something here
var Twizzler = getSceneObject("Twizzler");
wade.app.onMouseMove = function(eventData)
{
// I know that Twizzler is capiatalized, i was trying different things since it did not work as a lowercase. example, var twizzler = blah
Twizzler.setPosition(enentData.screenPosition.x, Twizzler.getPosition().y);
};
});