
directional_velocity = 10;
angle = direction(xscreen, yscreen, xmouse, ymouse);
float d2R(int degrees)
{
return degrees * (3.1415926535897932384626433832795 / 180);
}
double xdist(int deg, double dist)
{
return dist * cos(d2R(deg));
}
double ydist(int deg, double dist)
{
return -dist * sin(d2R(deg));
}
double xcre;
double ycre;
double ang; = direction(xscreen, yscreen, xmouse, ymouse);
xcre = xoffset + xdist(ang, gundist);//if your circle center is the same as the animation center, just use xcre = xdist...
ycre = yoffset + ydist(ang, gundist);//see above
CreateActor("bullet", "bulletanim", "no parent", "no path", xcre, ycre, false);
SergeLo00001 wrote:double ang; = direction(xscreen, yscreen, xmouse, ymouse);
i got invalid assignment for this line.confused by this part.
double ang = direction(xscreen, yscreen, xmouse, ymouse);
xcre = 100 + xdist(90, 3);
SergeLo00001 wrote:what do the 90 and the 3 mean
double ang = direction(xscreen, yscreen, xmouse, ymouse);
animpos = (ang / 360) * nframes;
Users browsing this forum: No registered users and 1 guest