8 [Script(ScriptRole.View)]
17 float _destroyDelay = 1;
19 int _isVisibleAnimParam = Animator.StringToHash(
"IsVisible");
21 protected override void Awake()
26 protected override void OnSpawn()
30 _icon = _guiObject.transform.FindChild(
"icon").GetComponent<Image>();
32 _icon.SetNativeSize();
33 _animator = _guiObject.GetComponent<Animator>();
36 protected override void Update()
40 _animator.SetBool(_isVisibleAnimParam,
IsVisible);
41 _icon.transform.rotation = Quaternion.identity;
44 protected override void OnDestroy()
50 if (_guiObject != null)
52 _animator.SetBool(_isVisibleAnimParam,
false);
53 Destroy(_guiObject, _destroyDelay);
Sprite Icon
The Sprite to use on the sticker.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
bool IsVisible
Gets a value indicating whether this sticker is visible.
A Sticker for showing the position of off screen objects the player may be interested in (other playe...