Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void RefreshQuantity()
  2. {
  3. if (quantityText == null) return;
  4. NewMethod();
  5. }
  6.  
  7. private void NewMethod()
  8. {
  9. quantityText.text = (currentItem.quantity <= 0) ? "" : currentItem.quantity.ToString();
  10. }
  11. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement