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
The fix above doesn't appear to solve the problem. My understanding of splice() is that it returns the removed array, so the code would be deemed incorrect if what you are trying to do is replace the contents of _assets with the spliced array (splice() does this for you)
If you have a use case setup where a removed asset is still visible to the getAsset() method, i would be interested to see
AssetLibraryBundle.as Line 439: this should be changed from
_assets.splice(idx, 1);
to_assets = _assets.splice(idx, 1);
.Currently, getAsset will still returns the previously removed (and where applicable, disposed) asset.
The text was updated successfully, but these errors were encountered: