Trying to make a simple game where the user controls an object and when it hits a moving object, it detects it and makes the user play again. Kinda like flappy bird but the user can control the bird anywhere. I am also pretty much a code illiterate as I only started a few months ago. Here is my unfinished code :
this.player1.on("pressmove", moveBall);
this.addEventListener("tick", fl_AnimateVertically.bind(this));
function fl_AnimateVertically()
{
this.obs1.x+=-10;
this.obs2.x+=-10;
this.obs3.x+=-10;
this.obs4.x+=-10;
this.obs5.x+=-10;
}
fl_AnimateVertically()
function moveBall(e) {
var p = stage.globalToLocal(e.stageX, e.stageY)
e.currentTarget.x= p.x;
e.currentTarget.y= p.y;
}
moveBall(e);