Liberi
An exergame built for kids with CP!
InventoryTile.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
9 public class InventoryTile : MonoBehaviour
10 {
11  public Sprite PrimaryIcon
12  {
13  get { return _primaryIcon.sprite; }
14 
15  set
16  {
17  _primaryIcon.sprite = value;
18  _primaryIcon.SetNativeSize();
19  _primaryIcon.enabled = (value != null);
20  _frontIcon.enabled = false;
21  _backIcon.enabled = false;
22  }
23  }
24 
25  public Sprite FrontIcon
26  {
27  get { return _frontIcon.sprite; }
28 
29  set
30  {
31  _frontIcon.sprite = value;
32  _frontIcon.SetNativeSize();
33  _frontIcon.enabled = true;
34  _primaryIcon.enabled = false;
35  }
36  }
37 
38  public Sprite BackIcon
39  {
40  get { return _backIcon.sprite; }
41 
42  set
43  {
44  _backIcon.sprite = value;
45  _backIcon.SetNativeSize();
46  _backIcon.enabled = true;
47  _primaryIcon.enabled = false;
48  }
49  }
50 
51  // These values associated with an item are stored on the tile temporarily for ease of
52  // displaying the proper info when a tile becomes the active selction in a shop.
53  public int ItemPrice;
54  public string ItemName;
55  public string ItemDescription;
56 
57  Animator _animator;
58  int _isSelectedAnimParam = Animator.StringToHash("IsSelected");
59  int _bounceAnimParam = Animator.StringToHash("Bounce");
60  int _isSpecialAnimParam = Animator.StringToHash("IsSpecial");
61  Image _primaryIcon;
62 
63  const float DEFAULT_SCALE = 0.75f;
64 
65  // Used for Hands and feet icons, to avoid having to create specialized GUI icons
66  // for every piece of hand/foot gear.
67  Image _frontIcon;
68  Image _backIcon;
69 
74  public void RotateAndScale(float degrees, float scale)
75  {
76  _primaryIcon.transform.eulerAngles = Vector3.forward * degrees;
77  _primaryIcon.transform.localScale = Vector3.one * scale;
78  }
79 
83  public void ResetRotationAndScale()
84  {
85  _primaryIcon.transform.eulerAngles = Vector3.zero; ;
86  _primaryIcon.transform.localScale = Vector3.one * DEFAULT_SCALE; ;
87  }
88 
92  public void SetSelected(bool state)
93  {
94  if (gameObject.activeSelf)
95  _animator.SetBool(_isSelectedAnimParam, state);
96  }
97 
101  public void SetSpecial(bool state)
102  {
103  _animator.SetBool(_isSpecialAnimParam, state);
104  }
105 
109  public void Bounce()
110  {
111  _animator.SetTrigger(_bounceAnimParam);
112  }
113 
114  void Awake()
115  {
116  _animator = GetComponent<Animator>();
117  _primaryIcon = transform.FindChild("primary_icon").GetComponent<Image>();
118  _frontIcon = transform.FindChild("front_icon").GetComponent<Image>();
119  _backIcon = transform.FindChild("back_icon").GetComponent<Image>();
120  }
121 }
void SetSpecial(bool state)
Makes a tile specially-selected (in the case of gem slot sub menu navigation)
void SetSelected(bool state)
Makes a tile appear selected (glowing orange selection box, slightly scaled).
void RotateAndScale(float degrees, float scale)
Rotates the and scales the primary Icon of the tile. U Used for items that are displayed in the gui d...
A visual representation of an Inventory item. Used by the StoreUIManager class to display items the v...
Definition: InventoryTile.cs:9
void Bounce()
Plays a bounce animation on the tile to indicate an action was done on it (purchase/equip, etc).
void ResetRotationAndScale()
Resets the rotation and scale of the primary icon to its default values.