Ejemplo n.º 1
0
    private IEnumerator HiddenToFlowerScreenRoutine()
    {
        state = CommentEntryState.Busy;

        fade.Out(0.5f);
        yield return(new WaitForSeconds(0.5f));

        menuTab.SetVisible(true);
        flower.SetOpen(true);
        yield return(new WaitForSeconds(0.2f));

        flowerTitle.Show(true);

        state = CommentEntryState.FlowerScreen;
    }
Ejemplo n.º 2
0
    // A function which allows the AppCoordinator to show and hide the UI tabs.

    public void SetUIVisibility(bool visible)
    {
        menuTab.SetVisible(visible);
        panoramaTab.SetVisible(visible);
    }