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
- Animation Clip with Legacy enabled does not play when Time.timeScale is set to 0 despite Update mode set to "Unscaled time"
- Rename is enabled on subfolder empty space - "Can't rename to empty name" warning
- SamplerState Property Missing Anisotropic Filtering
- Visual glitches when using Handles API
- The RGBA color values are inconsistent when comparing two identical colors set in the Inspector
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.