Search Issue Tracker
Fixed
Votes
0
Found in [Package]
1.8.3
Issue ID
ADDR-1233
Regression
No
[Addressables] CacheInitOp not getting updated after the first frame
The cache initialization operation (CacheInitOp) doesn't get updated after the first frame. This may only manifest if something else hasn't already triggered RegisterForCallbacks in ResourceManager.
We need to have ResourceManager Register for callbacks if there are initialization objects that get processed.
Quick Repro:
In CacheInitOp, change Update(..) to look like
int fakeFrameDelay = 0;
public void Update(float unscaledDeltaTime)
\{
#if ENABLE_CACHING
Debug.Log("we are waiting for init...");
fakeFrameDelay++;
if (fakeFrameDelay < 3)
return;
if (Caching.ready && m_UpdateRequired)
\{
m_UpdateRequired = false;
If you hack in calling resourceManager.RegisterForCallbacks when the InvokeExecute is called (or anywhere really) then it will work.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Test Runner’s vertical scrollbar overlaps with the up and down arrows and upper toolbar tabs when the window is minimized
- The Input Field view is not updated when deleting lines of text
- The scrollbar does not respect empty lines in the Input Field
- “Texture Atlas Viewer“ button text overlaps another button when the UI Toolkit Debugger is narrowed
- Thresholds are no longer automatically calculated after deleting Motion fields in Blendtrees
Resolution Note:
somehow this is a dupe of ADDR-1207, and that ticket was fixed in 1.9.0