এই বছরের শুরুতে আমি একটি সাধারণ শীর্ষ ডাউন শ্যুটার তৈরি করেছি created আমি নিম্নলিখিত পদ্ধতিটি ব্যবহার করেছি:
পূর্বের উত্তর: /programming/15364852/move-sprite-diagonally/15365570#15365570
public static class Helper_Direction
{
// Rotates one object to face another object (or position)
public static double FaceObject(Vector2 position, Vector2 target)
{
return (Math.Atan2(position.Y - target.Y, position.X - target.X) * (180 / Math.PI));
}
// Creates a Vector2 to use when moving object from position to a target, with a given speed
public static Vector2 MoveTowards(Vector2 position, Vector2 target, float speed)
{
double direction = (float)(Math.Atan2(target.Y - position.Y, target.X - position.X) * 180 / Math.PI);
Vector2 move = new Vector2(0, 0);
move.X = (float)Math.Cos(direction * Math.PI/180) * speed;
move.Y = (float)Math.Sin(direction * Math.PI / 180) * speed;
return move;
}
}
এটি দুটি অবস্থানের মধ্যে একটি ট্রাজেক্টরি গণনা করে।