-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeadBob.cs
47 lines (43 loc) · 1.23 KB
/
HeadBob.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
using UnityEngine;
public class HeadBob : MonoBehaviour
{
private float timer;
public bool active;
private Quaternion originalRotation;
public GameObject player;
//! Called by unity engine on start up to initialize variables.
public void Start()
{
originalRotation = transform.localRotation;
}
//! Resets the camera rotation.
public void Reset()
{
transform.localRotation = originalRotation;
timer = 0;
}
//! Called once per frame by unity engine.
public void Update()
{
if (active == true)
{
timer += 1 * Time.deltaTime;
if (timer < 0.25f)
{
transform.RotateAround(transform.position, transform.forward, Time.deltaTime * player.GetComponent<PlayerController>().playerMoveSpeed / 4);
}
else if (timer >= 0.25f && timer < 0.5f)
{
transform.RotateAround(transform.position, -transform.forward, Time.deltaTime * player.GetComponent<PlayerController>().playerMoveSpeed / 4);
}
else if (timer >= 0.5f)
{
timer = 0;
}
}
else
{
timer = 0;
}
}
}