BlackScreen.FadeToClear C# (CSharp) 메소드

FadeToClear() 공개 메소드

public FadeToClear ( ) : void
리턴 void
    public void FadeToClear()
    {
        // Lerp the colour of the panel between itself and transparent
        image.color = Color.Lerp (image.color, Color.clear, fadeOutSpeed * Time.deltaTime);
    }