BlackScreen.FadeToClear C# (CSharp) Method

FadeToClear() public method

public FadeToClear ( ) : void
return 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);
    }