コード例 #1
0
    //////////////////////////////////////////////////////////////////////////

    void RefreshContainerNextFrame()
    {
        GetContainer();

        if (AUIContainer == null)
        {
            Debug.LogError("[Accessibility] Could not find an Accessibility UI Container in any parent object of " + gameObject.name + "! This UI element will be unaccessible.");
            return;
        }

        AUIContainer.RefreshNextUpdate();
    }
コード例 #2
0
    //////////////////////////////////////////////////////////////////////////

    void RefreshContainerNextFrame()
    {
        GetContainer();

        if (AUIContainer == null)
        {
            LogErrorNoValidParent();
            return;
        }

        AUIContainer.RefreshNextUpdate();
    }