Search Issue Tracker
Fixed in 1.3.0.preview.1
Votes
0
Found in [Package]
1.1.2, 1.2.1
Issue ID
1209708
Regression
No
[Burst] "Burst error BC0102" is thrown when accessing Dynamic Buffer element data using Explicit Struct Layout
How to reproduce:
1. Open the attached project ("case_1209708-BugReporting.zip")
2. Open the repro scene ("SampleScene")
3. Enter Play Mode
4. Inspect Console
Expected results: No errors are thrown
Actual results: "Burst error BC0102: Unexpected internal compiler error while processing function" is thrown
Reproducible with: 2019.3.0f6, 2020.1.0a21
Couldn't test up to 2019.3 (package requires Unity version 2019.3 or above)
Reproducible with package versions: 1.1.2, 1.2.1
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
- [iOS] Application.deepLinkActivated does not get invoked while app is running when UIApplicationSceneManifest is added in Info.plist
- Inspector scroll area stretches when using components with nested serialized arrays on FBX model prefab instances
- Crash on ConstraintProjectionTree::projectionTreeBuildStep when ConfigurableJoint uses JointProjectionMode.PositionAndRotation and connected Rigidbody switches from kinematic to non-kinematic
- ScriptableObject asset is accessed during the lookup of Build Profiles when opening the Build Profiles Window
- [Multiplayer TPS Sample] Grenade launcher explosion misses the Player when the Collider count exceeds HitColliderBuffer
Resolution Note (fix version 1.3.0.preview.1):
For people on the 1.2.x release, it can be worked around by changing this:
return buffer.Something.Value.Property;
To this:
var temp = buffer.Something;
return temp.Value.Property;