Search Issue Tracker
Fixed
Votes
0
Found in [Package]
Issue ID
1352527
Regression
Yes
Selecting a child object of a Tilemap is very slow
Repro:
- download this project
- open cats_test_scene
- in the scene Hierachy, select the Background object
- in the child of that object called Walkable (a tilemap), there are 2 bunnies
- try to switch between the Bunny and the Bunny baby
- for me, it takes a few seconds for the selection to work and the secene to update
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 PrepareDrawShadowsCommandStep1 when entering the Play Mode in a specific project
- Physics Layer Collision Matrix's Layer names, checkboxes and hover highlights become misaligned when the Editor's UI Scaling gets changed
- Light/shadow information on an edge of a Terrain tile creates a seam with an adjacent Terrain tile when baking a LightMap
- "Missing types referenced from component UniversalRenderPipelineGlobalSettings on game object UniversalRenderPipelineGlobalSettings..." warning is thrown after switching the Platform to tvOS
- “Metal: Error creating pipeline state (Universal Render Pipeline/2D/Sprite-Lit-Default): Vertex attribute BLENDINDICES0(5) of type uint4 cannot be read using MTLAttributeFormatFloat2 (null)“ when setting GPU Skinning to GPU after opening the project
Resolution Note:
Performance regression fixed in: 2022.1.0a12.1571
Workaround for versions without the fix:
The problem performance problem stems from using a Prefab instance with a Tilemap that contains a lot of modifications.
While Prefabs with Tilemaps is not in itself a problem, a Tilemap contains a lot of data and every single changed tile is individually saved in the scene as modifications to the prefab. In the example, there is almost 90.000 modifications to the Prefab instance in the scene.
To work around the problem you can do:
- Often apply the modifications to the Prefab
- Unpack the prefab
- Only do small adjustments to the Prefab Instance