Search Issue Tracker
Fixed in 5.4.0
Votes
3
Found in
4.3.0f4
Issue ID
578690
Regression
No
Move Up a Component on a Prefab calls a fake warning dialog
To reproduce:
1. Create a new project
2. Create a game object
3. Drag it to the project view so it becomes a prefab
4. Click on the prefab in the hierarchy view
5. Right-Click on its component
6. Select "Move Up"
7. A warning message shows up: "This action will lose the prefab connection. Are you sure you wish to continue?"
8. Press "OK"
9. See that the prefab connection hasn't been lost.
Comments (3)
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
- After converting a Built-in project to URP render texture related errors are spammed that can lead to Game view being rendered on top of Scene view
- UI Builder slider value lags and stutters when sliding/modifying certain property values
- "Reset UI Builder Layout" functionality inconsistently changes Canva Size when "Match Game View" is enabled/disabled
- Texture Import Warnings are obscured by other Terrain Layer options in the Inspector
- Burst Inspector middle divider is jittering when resized with the Burst Inspector window docked
k0mbain
Oct 27, 2015 10:42
OK I've workarounded this issue.
I've disconnected prefabInstance from prefab by:
Object prefabParent = PrefabUtility.GetPrefabParent(parentGameObject);
PrefabUtility.DisconnectPrefabInstance(instanceGameObject);
Then used MoveComponentUp:
UnityEditorInternal.ComponentUtility.MoveComponentUp(childNetworkView)
and finally reattached it:
PrefabUtility.ReplacePrefab(instanceGameObject, prefabParent, ReplacePrefabOptions.ConnectToPrefab);
It doesn't show any dialog box.
k0mbain
Oct 27, 2015 10:30
It's very annoying when you write custom script to reorder components and you use it on >100 prefabs and you have to click >100 times "Continue" button
ocimum
Jul 15, 2015 09:44
In my case, moving a component up, the GameObject lost the connection to the prefab. The changes needed to be applied by pressing the button in the upper right corner in the inspector.