Resource Counter - is a simple counter created to show the count of any items.
Text - text that will show the number of items.
Image - image that shows the icon of the item.
Icon - item icon.
Value - current items count.
QUESTIONS: 1. How to set value? - Get the resource counter link and use SetValue();
[SerializeField] private ResourceCounter _counter;
private void Start()
{
//SetValue(value);
_counter.SetValue(100);
}