Search Issue Tracker
Fixed
Fixed in 1.4.2
Votes
1
Found in [Package]
1.3.2
1.4.2
Issue ID
LOC-794
Regression
Yes
Table is not being released when calling ReleaseTable
1) Open the attached project
2) Open Scene Bug
3) Press play and open the Addressables Event Viewer (Asset Managements/Addressables/Event Viewer). Enable profiler events
!image-2022-08-30-16-42-32-929.png!
4) Enable GameObject Canvas/Text(TMP)
Notice the profiler events shows the String Table is loaded
!image-2022-08-30-16-43-13-505.png!
5) Disable the Text component.
6) Press the Clear button in the scene view. This will call ReleaseTable
7) Notice the table is still loaded. It should have been released.
The reference count is 3 however we only release the table 2 times. We should not be incrementing the reference count in LoadTableOperation.cs line 93. This is creating an additional dependency reference.
Comment out line 93 and you will see it works as expected.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Post Processing SMAA breaks when HDR mode R11G11B10 is selected and Color Space is changed
- The "UnityWebRequest.result" of the "UnityWebRequestTexture.GetTexture" method changes when accessing "UnityWebRequest.downloadHandler" texture
- Slider rounding does not allow setting certain valid numbers as Values when Low and High Values not set to default
- UI Builder Canvas has too big resizing zone on the outside of the canvas
- GetCurrentAnimatorClipInfoCount() and GetNextAnimatorClipInfoCount() return 0 when animator is in transition
Add comment