-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoToParent.cs
32 lines (30 loc) · 926 Bytes
/
GoToParent.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
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GoToParent : MonoBehaviour
{
public float moveSpeed;
public bool bigAndSmall, dontdie;
public float growAmount;
float min, max;
// Start is called before the first frame update
void Start()
{
min = transform.localScale.x - growAmount;
max = transform.localScale.x + growAmount;
}
// Update is called once per frame
void Update()
{
transform.localPosition = Vector3.MoveTowards(transform.localPosition, Vector3.zero, moveSpeed);
if(bigAndSmall)
{
float mod = Mathf.Lerp(min, max, Mathf.PingPong(Time.time, 1));
transform.localScale = new Vector3(mod, mod, mod);
}
if(Vector3.Distance(transform.localPosition, Vector3.zero) < .1f && !dontdie)
{
Destroy(gameObject);
}
}
}