Liberi
An exergame built for kids with CP!
AvatarPointer.cs
1 using UnityEngine;
2 
6 [AddComponentMenu("Liberi/Avatar Pointer")]
7 [Script(ScriptRole.OwnerView)]
8 public class AvatarPointer: MonoBehaviour
9 {
13  public Vector3 Aim
14  {
15  get { return _aim; }
16  }
17 
21  public Vector3 PivotOffset = new Vector3(0f, 0f, -.01f);
25  public float PointerDistance = 1.5f;
29  public float TrackingStrength = 50f;
33  public float CameramanInfluenceX;
37  public float CameramanInfluenceY;
38  public bool HideOnIdle;
39 
40  Transform _pointer;
41  float _truePointerDistance;
42  Vector3 _goalAim;
43  Vector3 _aim;
44 
45  void OnSpawn ()
46  {
47  _pointer = Sync.SpawnLocal("avatar_pointer", transform.position).transform;
48  _aim = transform.GetRadialDirection();
49  _pointer.localScale = Vector3.one;
50  _truePointerDistance = PointerDistance;
51  _goalAim = _aim;
52  }
53 
54  void LateUpdate ()
55  {
56  if (Controls.Direction != Vector3.zero)
57  {
58  _goalAim = Controls.Direction;
59  _goalAim.z = 0;
60  _goalAim.Normalize();
61 
62  if (HideOnIdle)
63  {
64  _pointer.localScale = Vector3.Lerp(_pointer.localScale, Vector3.one, Time.deltaTime * 15);
65  _truePointerDistance = Mathf.Lerp(_truePointerDistance, PointerDistance, Time.deltaTime * 15);
66  }
67  }
68  else
69  {
70  if (HideOnIdle)
71  {
72  _pointer.localScale = Vector3.Lerp(_pointer.localScale, Vector3.zero, Time.deltaTime * 15);
73  _truePointerDistance = Mathf.Lerp(_truePointerDistance, 0, Time.deltaTime * 15);
74  }
75  }
76 
77  float theta = Vector3.Angle(_aim, _goalAim);
78 
79  if (theta > 179)
80  _aim = Quaternion.Euler(0, 0, 1f) * _aim;
81 
82  if (theta > .01f)
83  {
84  _aim.z = 0f;
85  _aim = Vector3.Slerp(_aim, _goalAim, Time.deltaTime * TrackingStrength);
86  _aim.z = 0f;
87  _aim.Normalize();
88  }
89  else _aim = _goalAim;
90 
91  _pointer.position = transform.position + PivotOffset + Vector3.back * .2f + _aim * _truePointerDistance;
92  _pointer.rotation = Quaternion.LookRotation(Vector3.forward, _aim) * Quaternion.Euler(0, 0, 90);
93 
94  if (Cameraman.Instance.Target == gameObject)
95  {
96  Cameraman.Instance.AdditionalOffset =
97  new Vector3(_goalAim.x * CameramanInfluenceX, _goalAim.y * CameramanInfluenceY, 0f);
98  }
99  }
100 
101  void OnDespawn ()
102  {
103  if (_pointer != null)
104  Sync.Despawn(_pointer);
105  }
106 }
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
float CameramanInfluenceY
Optional influence of this pointer on the cameraman in the Y direction.
Avatar pointer controller script.
Definition: AvatarPointer.cs:8
Vector3 Aim
Gets the current aim of
Vector3 AdditionalOffset
An optional additional offset.
Definition: Cameraman.cs:56
static Vector3 Direction
Returns a normalized, abstract direction. Could also be zero.
Definition: Controls.cs:55
Vector3 PivotOffset
The offset from the avatar's center to the pointer pivot.
GameObject Target
Gets or sets the target for this cameraman to follow.
Definition: Cameraman.cs:28
float PointerDistance
The distance from the pointer pivot to the pointer.
float TrackingStrength
The strength with which the pointer moves toward the desired aim direction.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
float CameramanInfluenceX
Optional influence of this pointer on the cameraman in the X direction.
Standard cameraman for the game.
Definition: Cameraman.cs:12
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41