Ejemplo n.º 1
0
    void UpdateAmmoText()
    {
        string newText = "";

        newText += weaponHandlerInstance.GetCurrentAmmo() + "/";
        newText += weaponHandlerInstance.GetMaxAmmo();
        currentAmmoText.text = newText;
    }