Axiom.Components.Paging.PagedWorldSection.LoadOrCreatePage C# (CSharp) Method

LoadOrCreatePage() public method

Load or create a page against this section covering the given world space position.
public LoadOrCreatePage ( Vector3 worldPos ) : Page
worldPos Vector3
return Page
        public virtual Page LoadOrCreatePage(Vector3 worldPos)
        {
            PageID id = GetPageID(worldPos);
            // this will create a Page instance no matter what, even if load fails
            // we force the load attempt to happen immediately (forceSynchronous)
            LoadPage(id, true);
            return GetPage(id);
        }
        /// <summary>