To make the bullet move to the direction of the mouse, put this script in bullet's create actor:
- Code: Select all
directional_velocity = 10;
angle = direction(xscreen, yscreen, xmouse, ymouse);
To make the bullet come out of the end of the gun, first check the animation. The path the tip of the gun travels should be close to a circle. You need to know the coordinates of the center of this circle relative to the center of the animation. In the following examples, replace yoffset with the y coordinate, and xoffset with the xcoordinate. Replace gundist with the radius of the circle. Now we need some functions, add this in global code:
- Code: Select all
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));
}
NOTE: the purpose of the d2r function is the same as that of the degtorad function. The effect should be the same if you replace d2r with degtorad. However, the d2r function works, so I have not tested it with the degtorad function. [/note]
On your actor that recieves the mouse-click, make an activation event to your player/gun actor. On that actor, add an activation event, script editor:
- Code: Select all
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);
Replace bullet with your bullet actor's name.
Replace bulletanim with your bullet;s animation name.