function teste2() {
target = { x: 0.6, y: 0.5 };
ataque.Tween( target, 600, "Circular.InOut", 0, false, teste3 );
}
function teste3(){
target = { x: 0.5, y: 0.15 };
ataque.Tween( target, 600, "Elastic.Out", 0, false, teste4 );
}
function teste4(){
target = { x: 0.6, y: 0.5 };
ataque.Tween( target, 500, "Circular.InOut", 0, false, teste5 );
}
function teste5(){
target = { x: 0.4, y: 0.75 };
ataque.Tween( target, 500, "Circular.InOut", 0, false );
}