You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using XKTLoaderPlugin#load, make it possible to call PerformanceModel#destroy() on the model, while the model is still loading. This is effectively a "cancel loading" capability.
Previously, we needed to actually wait for a model to finish loading before we can call destroy() on it, as shown below. The problem here is that the whole model (and possibly metadata) needs to be loaded into the Viewer before we're allowed to destroy it, which is wasteful and might create a rough user experience.
When using
XKTLoaderPlugin#load
, make it possible to callPerformanceModel#destroy()
on the model, while the model is still loading. This is effectively a "cancel loading" capability.Previously, we needed to actually wait for a model to finish loading before we can call destroy() on it, as shown below. The problem here is that the whole model (and possibly metadata) needs to be loaded into the
Viewer
before we're allowed to destroy it, which is wasteful and might create a rough user experience.Now we can just do this, if we need to:
The text was updated successfully, but these errors were encountered: