Search Issue Tracker
By Design
Votes
0
Found in
Issue ID
1333885
Regression
No
GetHolesLODInfo doesn't match the content of the HeightmapSubRegion holes array
Heightmap::GetHolesLODInfo returns kPatchHasSurfaceOnly for the patch I am interested in, but after extracting the HeightmapSubRegion the m_RawHoles are all 0 which means hole.
1. Download and extract this repro project: https://drive.google.com/file/d/1o5pdHh4roLg3tmj_1aJ0z4bMDo1kOIFa/view?usp=sharing
2. Compile an editor from https://ono.unity3d.com/unity/draft/changeset/f38b769664a471f66a9aeea3ca6cf6885c4ecb06
3. Open t1 scene;
Expected result:
One of the LOD related asserts should fire if the patch is fully covered by holes, but the returned holeInfo is kPatchHasSurfaceOnly:
Assert(holeInfo != Heightmap::kPatchHasNoSurface);
Assert(holeInfo != Heightmap::kPatchHasDirtyHoles);
Actual result:
Assert(holeCount != m_HeightmapSubRegion.m_RawHoles.size()); fires (entire patch is covered by holes).
The patch in question is (0,1) which corresponds to UV bounds 0.0, 0.25, 0.25, 0.25.
Notes:
This issue is preventing GI baking from working.
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
- Warning of an unknown Script missing is logged when selecting VFX in Play Mode
- Vertical and horizontal scrollbars appear and disappear when dragging an attribute to a different position within the Shader Graph Hierarchy
- AudioSource.PlayDelayed() does not work with Audio Random Containers
- Compatible with the VFX Graph Shader Graph can't be dragged and dropped into the "Output" block from the Project window
- [Silicon] Freeze/crash on BrotliDecoderDecompressStream when using System.IO.Compression.BrotliDecoder.TryDecompress
Resolution Note:
GetHolesLODInfo Works as intended