////////////////////////////////////////////////////////////////////////// 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(); }
////////////////////////////////////////////////////////////////////////// void RefreshContainerNextFrame() { GetContainer(); if (AUIContainer == null) { LogErrorNoValidParent(); return; } AUIContainer.RefreshNextUpdate(); }