Search Issue Tracker
Won't Fix
Won't Fix in 1.0.X
Votes
1
Found in [Package]
1.0.0-pre.6
Issue ID
NCCBUG-152
Regression
No
Reparenting RectTransform with SetParent method throws warning about using the same method
How to reproduce:
1. Open attached project
2. Load SetParent Scene
3. Enter Play Mode
4. Select NetworkManager in Hierarchy and in Inspector click Start Host
5. In Game view click Button
6. Observe Console
Code:
UI.GetComponent<RectTransform>().SetParent(canvas.transform, false);
Error:
Parent of RectTransform is being set with parent property. Consider using the SetParent method instead, with the worldPositionStays argument set to false. This will retain local orientation and scale rather than world orientation and scale, which can prevent common UI scaling issues.
Reproduced with: 2022.1.0b12
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
- Freeze on DynamicHeapAllocator::InitializeMemoryRegion when entering Play mode in a specific scene
- Memory usage rises when switching scenes with GRD enabled and a loaded texture in URP
- [Quality Hackweek] Terrain Brush Size value is not serialized after deselecting the terrain when using the first instance of multiple Inspectors
- "NullReferenceException" is thrown when setting a long string in TMP with "Atlas Population Mode" set to "Dynamic" and "Multi Atlas Textures" enabled
- TextMeshPro text is misaligned when alignment is set via script
Resolution Note:
There are no fixes planned for this Bug
Resolution Note (1.0.X):
The attached project was still using:
"com.unity.netcode.adapter.utp": "1.0.0-pre.6",
"com.unity.netcode.gameobjects": "1.0.0-pre.6",
Responded to the customer to update their project to the most current version. The issue with the WorldPositionStays not synchronizing properly is resolved in PR-2146, but Netcode for GameObjects does not support synchronizing RecTransform.