6 [AddComponentMenu(
"Liberi/Avatar Pointer")]
7 [Script(ScriptRole.OwnerView)]
38 public bool HideOnIdle;
41 float _truePointerDistance;
47 _pointer =
Sync.
SpawnLocal(
"avatar_pointer", transform.position).transform;
48 _aim = transform.GetRadialDirection();
49 _pointer.localScale = Vector3.one;
64 _pointer.localScale = Vector3.Lerp(_pointer.localScale, Vector3.one, Time.deltaTime * 15);
65 _truePointerDistance = Mathf.Lerp(_truePointerDistance, PointerDistance, Time.deltaTime * 15);
72 _pointer.localScale = Vector3.Lerp(_pointer.localScale, Vector3.zero, Time.deltaTime * 15);
73 _truePointerDistance = Mathf.Lerp(_truePointerDistance, 0, Time.deltaTime * 15);
77 float theta = Vector3.Angle(_aim, _goalAim);
80 _aim = Quaternion.Euler(0, 0, 1f) * _aim;
85 _aim = Vector3.Slerp(_aim, _goalAim, Time.deltaTime * TrackingStrength);
91 _pointer.position = transform.position + PivotOffset + Vector3.back * .2f + _aim * _truePointerDistance;
92 _pointer.rotation = Quaternion.LookRotation(Vector3.forward, _aim) * Quaternion.Euler(0, 0, 90);
97 new Vector3(_goalAim.x * CameramanInfluenceX, _goalAim.y * CameramanInfluenceY, 0f);
103 if (_pointer != null)
static void Despawn(GameObject go)
Despawn the given object.
float CameramanInfluenceY
Optional influence of this pointer on the cameraman in the Y direction.
Avatar pointer controller script.
Vector3 Aim
Gets the current aim of
Vector3 AdditionalOffset
An optional additional offset.
static Vector3 Direction
Returns a normalized, abstract direction. Could also be zero.
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.
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.
float CameramanInfluenceX
Optional influence of this pointer on the cameraman in the X direction.
Standard cameraman for the game.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Controls class. Allows for controls queries and controls injection from devices.