Exemple #1
0
    /// <summary>
    /// Coroutine for tip delay.
    /// </summary>
    /// <returns></returns>
    private IEnumerator ShowDelayedTooltip()
    {
        yield return(new WaitForSeconds(0.5f));

        if (!hide)
        {
            TooltipManager.Show(content, header);
        }
    }