Liberi
An exergame built for kids with CP!
Sticker.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 
9 [Script(ScriptRole.View)]
10 public abstract class Sticker : MonoBehaviour
11 {
16  public Transform Target;
20  public GameObject Prefab;
24  public string Tag;
25  public float Padding = 60;
26  public Vector3 Offset;
27  public bool ClampAnchor;
28  public bool PointAtTarget;
33  public bool ShowInBounds;
38  public bool Shown;
39  public bool LockScreenPosition;
40  public Vector2 LockPoint;
41 
42  protected GameObject _guiObject;
43  protected bool _initialized;
44 
48  public bool IsVisible
49  {
50  get { return (ShowInBounds || !InBounds) && Shown; }
51  }
52 
57  Vector3 WorldPoint
58  {
59  get { return Camera.main.WorldToScreenPoint(Target.position) + Offset; }
60  }
61 
66  bool InBounds
67  {
68  get
69  {
70  if (Target == null)
71  return false;
72 
73  Vector3 point = WorldPoint - Offset;
74  if (point.x > 0 && point.x < Screen.width && point.y > 0 && point.y < Screen.height)
75  return true;
76  return false;
77  }
78  }
79 
80  protected virtual void OnEnable()
81  {
82  if (_guiObject != null)
83  _guiObject.SetActive(true);
84  }
85 
86  protected virtual void OnDisable()
87  {
88  if (_guiObject != null)
89  _guiObject.SetActive(false);
90  }
91 
92  protected virtual void Awake()
93  {
94  if (Target == null)
95  Target = transform;
96  }
97 
98  protected virtual void OnSpawn()
99  {
101  _guiObject = Sync.SpawnLocal(Prefab, WorldPoint);
102  _guiObject.transform.SetParent(StickerManager.Canvas, false);
103 
104  if (LockScreenPosition)
105  {
106  Target = null;
107  _guiObject.GetComponent<RectTransform>().anchoredPosition = LockPoint;
108  }
109 
110  _initialized = true;
111  }
112 
113  protected virtual void Update()
114  {
115  // If the Sticker was disabled when a viewing player joined the server, it won't have OnSpawn Called
116  // This makes sure OnSpawn is called at least once.
117  if (!_initialized)
118  OnSpawn();
119 
120  if (Target != null)
121  {
122  Vector3 newPosition = WorldPoint;
123 
124  if (ClampAnchor)
125  {
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));
128  }
129 
130  _guiObject.transform.position = newPosition;
131 
132  if (PointAtTarget)
133  {
134  // Points at the actual target position without the applied offset.
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);
138  }
139  }
140  }
141 
142  protected virtual void OnDestroy()
143  {
144  if (Game.IsClient)
146  }
147 }
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.
Definition: Sticker.cs:33
GameObject Prefab
A prefab to spawn as the visual representation of this sticker.
Definition: Sticker.cs:20
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
Definition: Sticker.cs:10
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...
Definition: Sticker.cs:16
bool Shown
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable t...
Definition: Sticker.cs:38
bool IsVisible
Gets a value indicating whether this sticker is visible.
Definition: Sticker.cs:49
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
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...
Definition: Sticker.cs:24
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13