-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlyTowards.cs
36 lines (29 loc) · 978 Bytes
/
FlyTowards.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FlyTowards : MonoBehaviour {
public GameObject flyTowards;
public string flyTowardsStartPointName;
public bool constant;
public float speedAccel;
public float speedMax;
private Rigidbody2D rb;
// Use this for initialization
void Start () {
rb = GetComponent<Rigidbody2D>();
if (!constant)
{
flyTowards = GameObject.Find(flyTowardsStartPointName);
//transform.LookAt(flyTowards.transform);
rb.AddForce((flyTowards.transform.position - transform.position) * speedMax);
}
}
private void FixedUpdate()
{
if(constant && flyTowards != null)
{
rb.AddForce((flyTowards.transform.position - transform.position) * speedAccel);
rb.velocity = Vector2.ClampMagnitude(rb.velocity, speedMax);
}
}
}