4 using System.Collections.Generic;
12 [AddComponentMenu(
"Liberi/Inspectable")]
13 [RequireComponent(typeof(
Usable))]
14 [Script(ScriptRole.Client)]
17 public bool IsInspecting
19 get {
return _isInspecting; }
22 public float ScrollProgress
24 get {
return _scrollBuffer.magnitude; }
27 public float MinScrollPower = .1f;
28 public float ScrollSpeed = 2f;
29 public float ScrollDelay = 0.25f;
30 public AudioClip StartInspectingSound;
31 public AudioClip StopInspectingSound;
32 public AudioClip InspectionMusic;
35 Vector3 _scrollBuffer;
51 public void StartInspecting ()
66 if (StartInspectingSound != null)
72 public void StopInspecting (
bool isDestroyed =
false)
82 _isInspecting =
false;
86 if (StopInspectingSound != null)
97 if (_isInspecting && _canScroll)
101 if (desiredScroll.sqrMagnitude >= MinScrollPower)
103 _scrollBuffer += desiredScroll * ScrollSpeed * Time.deltaTime;
105 if (_scrollBuffer.sqrMagnitude >= 1f)
107 Vector3 rawScrollDir = _scrollBuffer.normalized;
108 Vector3 scrollDir = Vector3.zero;
110 if (Mathf.Abs(rawScrollDir.x) > Mathf.Abs(rawScrollDir.y))
111 scrollDir =
new Vector3(Mathf.Sign(rawScrollDir.x), 0f, 0f);
112 else scrollDir =
new Vector3(0f, Mathf.Sign(rawScrollDir.y), 0f);
115 StartCoroutine(DelayNextScroll());
116 _scrollBuffer = Vector3.zero;
121 if (_scrollBuffer != Vector3.zero)
123 _scrollBuffer -= _scrollBuffer.normalized * ScrollSpeed * Time.deltaTime;
125 if (_scrollBuffer.sqrMagnitude <= .01f)
126 _scrollBuffer = Vector3.zero;
132 IEnumerator DelayNextScroll ()
135 yield
return new WaitForSeconds(ScrollDelay);
A Component that indicates this object can be "used" by the client. A usable object provides an actio...
static GameObject GetLocalObject()
Gets the first object that is owned by the local peer.
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
static Vector3 Direction
Returns a normalized, abstract direction. Could also be zero.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Class for managing study-related game components.
Something which can be inspected by the player.
static void LogEvent(Enum eventType, params object[] args)
Log a game event.
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.