implement stats tilt

encompasses releases 1.1.2 and 1.1.3
This commit is contained in:
msk
2022-02-13 03:17:47 -08:00
parent 640245cdd5
commit 6249f07788
10 changed files with 51 additions and 18 deletions
+3 -3
View File
@@ -34,14 +34,14 @@ namespace TNHQoLImprovements
yield return new WaitForEndOfFrame();
}
}
Debug.Log("Token sprite found after " + debug_iterations.ToString() + " iterations.");
//Debug.Log("Token sprite found after " + debug_iterations.ToString() + " iterations.");
transform.GetChild(0).GetComponent<Image>().sprite = tokenSprite;
}
void Update()
{
int tokens = InPlay.tnhManager.GetNumTokens();
text.text = tokens.ToString();
int tokens = InPlay.tnhManager.GetNumTokens();
text.text = tokens.ToString();
}
}
}