Show() public method

public Show ( bool show ) : void
show bool
return void
    void HideAllSigns(bool hide)
    {
        for (int i = 0; i < numSigns; i++)
        {
            SignWithRing sign = SignAtIndex(i);

            sign.Show(!hide);
        }
    }
    void Next()
    {
        if (showAllMode)
        {
            if ((index % numSigns) == 0)
            {
                AppCentral.APP.ShowLookdownNotifier();
            }

            RotateToIndex(index);

            index++;
        }
        else
        {
            HideAllSigns(true);

            SignWithRing sign = SignAtIndex(index);

            if (sign != null)
            {
                sign.Show(true);

                RotateToIndex(index);

                index++;
            }
            else // failed, so show them all
            {
                index = 0;
                AppCentral.APP.ShowLookdownNotifier();

                HideAllSigns(false);
                showAllMode = true;

                Next();
            }
        }
    }