![]() |
Liberi
An exergame built for kids with CP!
|
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with the StickerManager class. Should be derived from to create unique stickers. More...
Inherits MonoBehaviour.
Inherited by InterestSticker, LabelSticker, and MeterSticker.
Public Attributes | |
Transform | Target |
A target transform this sticker attaches to visually. If left empty, will default to the tranform this component is attached to. More... | |
GameObject | Prefab |
A prefab to spawn as the visual representation of this sticker. More... | |
string | Tag |
A Tag used to identify groups of sticker. Eg, "player_names" could be the tag for LabelStickers attached to player Avatars. More... | |
float | Padding = 60 |
Vector3 | Offset |
bool | ClampAnchor |
bool | PointAtTarget |
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. More... | |
bool | Shown |
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable the display of groups of tags. More... | |
bool | LockScreenPosition |
Vector2 | LockPoint |
Protected Member Functions | |
virtual void | OnEnable () |
virtual void | OnDisable () |
virtual void | Awake () |
virtual void | OnSpawn () |
virtual void | Update () |
virtual void | OnDestroy () |
Protected Attributes | |
GameObject | _guiObject |
bool | _initialized |
Properties | |
bool | IsVisible [get] |
Gets a value indicating whether this sticker is visible. More... | |
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with the StickerManager class. Should be derived from to create unique stickers.
Definition at line 10 of file Sticker.cs.
GameObject Sticker.Prefab |
A prefab to spawn as the visual representation of this sticker.
Definition at line 20 of file Sticker.cs.
bool Sticker.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 at line 33 of file Sticker.cs.
bool Sticker.Shown |
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable the display of groups of tags.
Definition at line 38 of file Sticker.cs.
string Sticker.Tag |
A Tag used to identify groups of sticker. Eg, "player_names" could be the tag for LabelStickers attached to player Avatars.
Definition at line 24 of file Sticker.cs.
Transform Sticker.Target |
A target transform this sticker attaches to visually. If left empty, will default to the tranform this component is attached to.
Definition at line 16 of file Sticker.cs.
|
get |
Gets a value indicating whether this sticker is visible.
Definition at line 49 of file Sticker.cs.