“zanikaj tekst” Kod odpowiedzi

zanikaj tekst

public Text text;
public void FadeOut()
{
    StartCoroutine(FadeOutCR);
}

private IEnumerator FadeOutCR()
{
    float duration = 0.5f; //0.5 secs
    float currentTime = 0f;
    while(currentTime < duration)
    {
        float alpha = Mathf.Lerp(1f, 0f, currentTime/duration);
        text.color = new Color(text.color.r, text.color.g, text.color.b, alpha);
        currentTime += Time.deltaTime;
        yield return null;
    }
    yield break;
}
Enthusiastic Eel

zanikaj tekst


// fade to transparent over 500ms.
text.CrossFadeAlpha(0.0f, 0.05f, false);

// and back over 500ms.
text.CrossFadeAlpha(1.0f, 0.05f, false);

Xenophobic Xenomorph

Odpowiedzi podobne do “zanikaj tekst”

Pytania podobne do “zanikaj tekst”

Więcej pokrewnych odpowiedzi na “zanikaj tekst” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu