Search Issue Tracker
Fixed in 2020.1.X
Fixed in 2017.4.X, 2018.4.X, 2019.2.X, 2019.3.X
Votes
0
Found in
2018.4
2019.1.14f1
2019.2
2019.3
2020.1
Issue ID
1182074
Regression
No
[64bit IL2CPP] Marshal.OffsetOf returns incorrect offset
To reproduce:
1. Open the user's attached project using the EnvIronman VM (more information in Edit)
2. Open the SampleScene inside of the project
3. Go to Player Settings and set Scripting Backend to Mono
4. Build and run it
Expected: Notice the returned offset for "blendShapeParams" is 4, and all 6 values from the float array are shown:
blendShapeParams[0] = 10.23; blendShapeParams[1] = 11.33; blendShapeParams[2] = 22.23; blendShapeParams[3] = 33.23; blendShapeParams[4] = 44.33; blendShapeParams[5] = 55.33;
5. Close the player
6. Go to Player Settings again and set Scripting Backend to IL2CPP
7. Build and run it
Actual: Notice the returned offset for "blendShapeParams" is 8, and the printed float elements start from the second element, with the 6th one being 0 (uninitialized).
blendShapeParams[0] = 11.33; blendShapeParams[1] = 22.23; blendShapeParams[2] = 33.23; blendShapeParams[3] = 44.33; blendShapeParams[4] = 55.33; blendShapeParams[5] = 0;
Reproduced in 2018.3.0a1, 2019.1.14f1, 2020.1.0a2
Reproduced with Windows IL2CPP Player and UWP
Not reproduced with WebGL and Windows Mono
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Duplicate External Textures start appearing when a Texture created with "CreateExternalTexture" is modified causing Memory Usage spikes on VisionOS
- Silent crash when using a "Blend Shape" in a "Skinned Mesh Renderer" to move vertices to Vector3.positiveInfinity, and "Occlusion Culling" is baked
- Some Prefab Source and Override content bounds are misaligned
- The Package Manager's "install packages by..." panels break when Domain Reload is triggered, and the panel is open
- Crash with multiple stack traces when leaving a docked VFX Graph open
Add comment