-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttracted.cs
37 lines (31 loc) · 1.19 KB
/
Attracted.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
using UnityEngine;
using System.Collections;
class Attracted : MonoBehaviour
{
string text = ((int)(Random.value * 100)).ToString();
void Start()
{
gameObject.GetComponent<TextMesh>().text = text;
}
public GameObject attractedTo;
public float strengthOfAttraction = 1.0f;
void FixedUpdate ()
{
Vector3 direction = attractedTo.transform.position - transform.position;
gameObject.GetComponent<Rigidbody2D>().AddForce(strengthOfAttraction * direction);
//Vector3 relativePos = (attractedTo.transform.position + new Vector3(0, 1.5f, 0)) - transform.position;
//Quaternion rotation = Quaternion.LookRotation(relativePos);
//Quaternion current = transform.localRotation;
//transform.localRotation = Quaternion.Slerp(current, rotation, Time.deltaTime);
//transform.Translate(0, 0, 3 * Time.deltaTime);
}
/*
float RotationSpeed = 100f;
float OrbitDegrees = 2f;
void Update()
{
//transform.Rotate(Vector3.up, RotationSpeed * Time.deltaTime);
transform.RotateAround(attractedTo.transform.position, new Vector3(0, 0, 1), OrbitDegrees);
}
*/
}