11 public Sprite PrimaryIcon
13 get {
return _primaryIcon.sprite; }
17 _primaryIcon.sprite = value;
18 _primaryIcon.SetNativeSize();
19 _primaryIcon.enabled = (value != null);
20 _frontIcon.enabled =
false;
21 _backIcon.enabled =
false;
25 public Sprite FrontIcon
27 get {
return _frontIcon.sprite; }
31 _frontIcon.sprite = value;
32 _frontIcon.SetNativeSize();
33 _frontIcon.enabled =
true;
34 _primaryIcon.enabled =
false;
38 public Sprite BackIcon
40 get {
return _backIcon.sprite; }
44 _backIcon.sprite = value;
45 _backIcon.SetNativeSize();
46 _backIcon.enabled =
true;
47 _primaryIcon.enabled =
false;
54 public string ItemName;
55 public string ItemDescription;
58 int _isSelectedAnimParam = Animator.StringToHash(
"IsSelected");
59 int _bounceAnimParam = Animator.StringToHash(
"Bounce");
60 int _isSpecialAnimParam = Animator.StringToHash(
"IsSpecial");
63 const float DEFAULT_SCALE = 0.75f;
76 _primaryIcon.transform.eulerAngles = Vector3.forward * degrees;
77 _primaryIcon.transform.localScale = Vector3.one * scale;
85 _primaryIcon.transform.eulerAngles = Vector3.zero; ;
86 _primaryIcon.transform.localScale = Vector3.one * DEFAULT_SCALE; ;
94 if (gameObject.activeSelf)
95 _animator.SetBool(_isSelectedAnimParam, state);
103 _animator.SetBool(_isSpecialAnimParam, state);
111 _animator.SetTrigger(_bounceAnimParam);
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>();
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...
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.