Search Issue Tracker
By Design
Votes
0
Found in
2018.3.0b11
2019.1.0a10
Issue ID
1104590
Regression
No
PackedMemorySnapshot: "subSystemList" detected with wrong type
To reproduce:
1) Open user attached project
2) Click Mainmenu > BugReport > Open TestCode Window
3) Click "Capture Memory" button
Actual: The "subSystemList" field is detected as ValueType.
Expected: The "subSystemList" field is detected as Array, which is a ReferenceType.
Reproduced in 2018.3.0b11 and 2019.1.0a10 (subSystemList is not checked in earlier versions)
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
- Crash on __pthread_kill when initializing Vuplex WebView while entering the Play Mode
- Crash on FindSurface when adding a custom Renderer Feature to a 2D Renderer Data Asset
- [Android] [Vulkan] [UI Toolkit] Application crashes when the device is rotated when it has UI Toolkit TextField on Vulkan devices
- Crash on DualThreadAllocator<DynamicHeapAllocator>::TryDeallocate when opening a specific project
- Crash on memset_repstos when pressing a UI button while in Play Mode
Resolution Note (2019.1.X):
In mono we initialize class data on access, as such if the member subSystemList's type is never used in the user's code it will not be initialized and therefore skipped by the crawling process. In our case this type is PlayerLoopsystem[], as such any usage of this type either by accessing the aforementioned member or creating a variable of PlayerLoopSystem[] will initialize the type and it will cause the member subSystemsList to be reported(even if it is unused).