4 using System.Collections.Generic;
13 [AddComponentMenu(
"Liberi/Usable")]
14 [RequireComponent(typeof(Collider))]
15 [Script(ScriptRole.Client)]
34 if (_inspectable != null)
35 return _inspectable.enabled;
42 _inspectable = GetComponent<Inspectable>();
59 void OnTriggerEnter (Collider other)
68 void OnTriggerExit (Collider other)
70 if (_isAvatarOver && other.tag ==
"Avatar" &&
Sync.
IsLocal(other))
72 _isAvatarOver =
false;
81 _isAvatarOver =
false;
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
A Component that indicates this object can be "used" by the client. A usable object provides an actio...
static void UnregisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Unregister an action info provider.
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
string GetActionCaption(ControlsAction action)
Gets the caption to use for the given action.
Interface for classes which provide information for an action.
Class for managing study-related game components.
Something which can be inspected by the player.
static void RegisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Register an action info provider.
string UseCaption
The Caption to use. Should be provided as an id for the Localizer class to use.
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.
bool IsActionEnabled(ControlsAction action)
Gets whether or not the given action is enabled.