--------------------------------------------------------------------------------
Tambien me gustaria saber para que declaran las variables Ax, ay, VX Y Vy en este codigo
onClipEvent (load)
{
Ax = 0;
Ay = 0;
Vx = 0;
Vy = 0;
F = 0.010000;
R = 0.050000;
}
onClipEvent (enterFrame)
{
Ax = F * (_root._xmouse - _root.ball._x) - Vx * R;
Ay = F * (_root._ymouse - _root.ball._y) - Vy * R;
Vx = Vx + Ax;
Vy = Vy + Ay;
Vr = Vr + (Ax + Ay / 2);
_root.ball._x = _root.ball._x + Vx;
_root.ball._y = _root.ball._y + Vy;
_root.ball._rotation = _root.ball._rotation + Vr;
}
