9 [Script(ScriptRole.View)]
10 public abstract class Sticker : MonoBehaviour
25 public float Padding = 60;
26 public Vector3 Offset;
27 public bool ClampAnchor;
28 public bool PointAtTarget;
39 public bool LockScreenPosition;
40 public Vector2 LockPoint;
42 protected GameObject _guiObject;
43 protected bool _initialized;
50 get {
return (ShowInBounds || !InBounds) &&
Shown; }
59 get {
return Camera.main.WorldToScreenPoint(Target.position) + Offset; }
73 Vector3 point = WorldPoint - Offset;
74 if (point.x > 0 && point.x < Screen.width && point.y > 0 && point.y < Screen.height)
80 protected virtual void OnEnable()
82 if (_guiObject != null)
83 _guiObject.SetActive(
true);
86 protected virtual void OnDisable()
88 if (_guiObject != null)
89 _guiObject.SetActive(
false);
92 protected virtual void Awake()
98 protected virtual void OnSpawn()
104 if (LockScreenPosition)
107 _guiObject.GetComponent<RectTransform>().anchoredPosition = LockPoint;
113 protected virtual void Update()
122 Vector3 newPosition = WorldPoint;
126 newPosition =
new Vector3(Mathf.Clamp(newPosition.x + Offset.x, Padding, Screen.width - Padding),
127 Mathf.Clamp(newPosition.y + Offset.y, Padding, Screen.height - Padding));
130 _guiObject.transform.position = newPosition;
135 Vector3 targetPoint = WorldPoint - Offset;
136 float angle = Mathf.Atan2(targetPoint.y - _guiObject.transform.position.y, targetPoint.x - _guiObject.transform.position.x) * Mathf.Rad2Deg;
137 _guiObject.transform.rotation = Quaternion.AngleAxis(angle, Vector3.forward);
142 protected virtual void OnDestroy()
The manager class of all Sticker objects. Stickers are generic GUI objects used for various purposes ...
bool ShowInBounds
Whether or not the sticker should be shown when target is in the bounds of the camera. Eg, an InterestSticker points to an off screen object and should not be visible if the target is in bounds.
GameObject Prefab
A prefab to spawn as the visual representation of this sticker.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
static void UnregisterSticker(Sticker sticker)
Unregister a sticker when a sticker is destroyed and not to be used any more (such as a player leavin...
Transform Target
A target transform this sticker attaches to visually. If left empty, will default to the tranform thi...
bool Shown
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable t...
bool IsVisible
Gets a value indicating whether this sticker is visible.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
static void RegisterSticker(Sticker sticker)
Register a sticker with the manager so that the manager know about the stickers existence.
string Tag
A Tag used to identify groups of sticker. Eg, "player_names" could be the tag for LabelStickers attac...
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...