AdColony.GetV4VCName C# (CSharp) Méthode

GetV4VCName() public static méthode

public static GetV4VCName ( ) : string
Résultat string
    public static string GetV4VCName()
    {
        return "undefined";
    }

Same methods

AdColony::GetV4VCName ( string zone_id ) : string

Usage Example

    // Update is called once per frame
    void Update()
    {
        // currencyText.text = ("Credits: " + ADCAdManager.GetRegularCurrencyAmount());
        PlayVideoZoneButton playVideoZoneButton = currencyButton.GetComponent <PlayVideoZoneButton>();

        currencyText.text = (AdColony.GetV4VCName(ADCAdManager.GetZoneIdByKey(playVideoZoneButton.zoneIdKey)) + ": " + ADCAdManager.GetRegularCurrencyAmount());
    }