Search Issue Tracker
By Design
By Design in 2023.2.X
Votes
0
Found in
2021.3.26f1
2022.3.0f1
2023.1.0b19
2023.2.0a18
Issue ID
UUM-37789
Regression
No
Unity_BaseInstanceID is always zero when rendering multiple meshes and instancing with the same buffer
Reproduction steps:
1. Open project “BugReport.zip”
2. Open scene “test”
3. Select “GameObject” in the Hierarchy
4. Change the “Batch Size” under the “Render Test (Script)” component through the Inspector
5. Observe Scene view
Expected result: the rainbow is always fully displayed
Actual result: the start of the rainbow repeats
Reproducible with: 2021.3.26f1, 2022.3.0f1, 2023.1.0b19, 2023.2.0a18
Reproducible on: macOS Ventura 13.2.1 (Intel), Windows 10 (by reporter)
Notes:
- Unity_BaseInstanceID is zero, even if a different “startInstance” was provided to “RenderMeshInstanced()” (“RenderTest.cs” line 39)
- If the GameObject does not appear upon opening the project - enter Play Mode
- Also reproducible in Standalone Player
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 UndoManager::RegisterUndoInternal when applying added GameObjects to a Prefab
- [Asset Bundles] A new bundle hash is not generated when the name of a serialized field is changed
- Icon section shows incomplete message and unusable check box in Build Profiles and Player Settings window instead of “Not applicable for this platform” for Dedicated Server Platform
- Assets are created in the Package folders when creating assets via custom buttons in the Inspector window or other windows
- “Select” windows are named differently on Windows and macOS
Resolution Note:
This is by design, every time you call RenderMeshInstanced() this will reset unity_InstanceID back to 0. If you want the instance over multiple RenderMeshInstanced() calls you can pass it through as a material property or use the commandbuffer.
Resolution Note (2023.2.X):
This is by design, every time you call RenderMeshInstanced() this will reset unity_InstanceID back to 0. If you want the instance over multiple RenderMeshInstanced() calls you can pass it through as a material property or use the commandbuffer.