13 int _isShownAnimParam = Animator.StringToHash(
"IsShown");
15 int _currentSelectionIndex;
20 Text _itemDescription;
26 _animator = GetComponent<Animator>();
28 _vendorName = transform.FindChild(
"vendor_name").GetComponent<Text>();
29 _itemName = transform.FindChild(
"item_name").GetComponent<Text>();
30 _itemPrice = transform.FindChild(
"item_price").GetComponent<Text>();
31 _itemDescription = transform.FindChild(
"item_description").GetComponent<Text>();
32 _currencyIcon = transform.FindChild(
"currency_icon").GetComponent<Image>();
37 Transform grid = transform.FindChild(
"grid");
39 for (
int i = 0; i < _inventoryTiles.Length; i++)
42 newTile.transform.SetParent(grid,
false);
43 _inventoryTiles[i] = newTile;
47 public static void Show (
VendorItemInfo[] itemInfos,
string vendorName)
49 _instance._animator.SetBool(_instance._isShownAnimParam,
true);
50 _instance._vendorName.text = vendorName;
52 for (
int i = 0; i < itemInfos.Length; i++)
55 tile.gameObject.SetActive(
true);
57 if (itemInfos[i].
Item.
Type ==
"hero")
63 tile.ItemPrice = itemInfos[i].Price;
66 if (heroItem.
Slot ==
"hands")
71 else if (heroItem.
Slot ==
"feet")
82 if (itemInfos[i].
Item.
Type ==
"guardian")
88 tile.ItemPrice = itemInfos[i].Price;
92 if (weapon.
AttackStyle == GuardianWeaponType.Ranged)
100 for (
int i = itemInfos.Length; i < _instance._inventoryTiles.Length; i++)
103 tile.gameObject.SetActive(
false);
107 public static void UpdateSelectionIndex (
int newSelectionIndex,
bool isOwned)
109 _instance._inventoryTiles[_instance._currentSelectionIndex].
SetSelected(
false);
110 _instance._inventoryTiles[newSelectionIndex].
SetSelected(
true);
111 _instance._currentSelectionIndex = newSelectionIndex;
113 _instance._itemName.text = _instance._inventoryTiles[newSelectionIndex].ItemName;
114 _instance._itemDescription.text = _instance._inventoryTiles[newSelectionIndex].ItemDescription;
118 _instance._itemPrice.text = _instance._inventoryTiles[newSelectionIndex].ItemPrice.ToString(
"N0");
119 _instance._currencyIcon.enabled =
true;
123 _instance._itemPrice.text =
"";
124 _instance._currencyIcon.enabled =
false;
128 public static void BounceSelectedIcon ()
130 _instance._inventoryTiles[_instance._currentSelectionIndex].
Bounce();
133 public static void Hide ()
135 _instance._animator.SetBool(_instance._isShownAnimParam,
false);
137 for (
int i = 0; i < _instance._inventoryTiles.Length; i++)
Derived class for storing Hero clothing items.
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
string DisplayNameID
The Localization ID of the Item's actual name as it will appear in inventory/shops.
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
void SetSelected(bool state)
Makes a tile appear selected (glowing orange selection box, slightly scaled).
virtual string Type
Derived classes should override this property with a relevant string used for comparisons related to ...
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...
Sprite GUISprite
The Sprite used to represent this item in the GUI.
A visual representation of an Inventory item. Used by the StoreUIManager class to display items the v...
Sprite PrimarySprite
The primary sprite.
void Bounce()
Plays a bounce animation on the tile to indicate an action was done on it (purchase/equip, etc).
Derived class for storing Wiskin Defense weapons.
A class that loads all Item Serializeable Objects from the Resources folder and provides the ability ...
GuardianWeaponType AttackStyle
What attack style this weapon is (Melee vs. Ranged).
void ResetRotationAndScale()
Resets the rotation and scale of the primary icon to its default values.
string DescriptionID
The Localization ID of the Item's description/flavour text.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Class to manage the visual representation of the inventory screen.
Sprite SecondarySprite
The secondary sprite (currently just for the back hand for gloves).
string Slot
Which equipment slot this item is for.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...