Liberi
An exergame built for kids with CP!
InterestSticker.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
8 [Script(ScriptRole.View)]
9 public class InterestSticker : Sticker
10 {
14  public Sprite Icon;
15 
16  Image _icon;
17  float _destroyDelay = 1;
18  Animator _animator;
19  int _isVisibleAnimParam = Animator.StringToHash("IsVisible");
20 
21  protected override void Awake()
22  {
23  base.Awake();
24  }
25 
26  protected override void OnSpawn()
27  {
28  base.OnSpawn();
29 
30  _icon = _guiObject.transform.FindChild("icon").GetComponent<Image>();
31  _icon.sprite = Icon;
32  _icon.SetNativeSize();
33  _animator = _guiObject.GetComponent<Animator>();
34  }
35 
36  protected override void Update()
37  {
38  base.Update();
39 
40  _animator.SetBool(_isVisibleAnimParam, IsVisible);
41  _icon.transform.rotation = Quaternion.identity;
42  }
43 
44  protected override void OnDestroy()
45  {
46  base.OnDestroy();
47 
48  // Check if the GUI Object is null before destroying it.
49  // In the case of Scene unloading, the GUI Object can actually be destroyed before it's owner.
50  if (_guiObject != null)
51  {
52  _animator.SetBool(_isVisibleAnimParam, false);
53  Destroy(_guiObject, _destroyDelay);
54  }
55  }
56 }
Sprite Icon
The Sprite to use on the sticker.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
Definition: Sticker.cs:10
bool IsVisible
Gets a value indicating whether this sticker is visible.
Definition: Sticker.cs:49
A Sticker for showing the position of off screen objects the player may be interested in (other playe...