-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttractor.cs
62 lines (53 loc) · 1.44 KB
/
Attractor.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Attractor : MonoBehaviour
{
public string tagToAttract;
public float attractForce, suckTime, suckOG, delay;
public bool suckOn;
MeshRenderer mr;
private void Start()
{
mr = GetComponent<MeshRenderer>();
StartCoroutine(Suck());
}
private void Update()
{
//reset it to grey if it's not actively sucking
if (!suckOn)
{
if (mr.material.color != Color.grey)
{
mr.material.color = Color.grey;
}
}
}
public void Attract(float force)
{
foreach(GameObject go in GameObject.FindGameObjectsWithTag(tagToAttract))
{
go.GetComponent<Rigidbody>().velocity = force*(transform.position - go.transform.position).normalized;
}
mr.material.color = Color.green;
}
public void Attract()
{
Attract(attractForce);
}
public IEnumerator Suck()
{
while (suckTime > 0)
{
suckOn = true;
Attract(attractForce);
suckTime -= Time.deltaTime;
yield return null;
}
suckOn = false;
mr.material.color = Color.grey;
yield return new WaitForSeconds(delay);
suckTime = suckOG;
StartCoroutine(Suck());
}
}