Re: Homing gatling trouble
Read the .lua, it doesn't rotate the particle, it rotates its Vel vector.
Change targetdir = stuff line to
Code:
local targetdir = math.atan2(-(self.target.Pos.Y-self.Pos.Y),(self.target.Pos.X-self.Pos.X))*180/math.pi;
That converts targetdir from radians to degrees.