You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When freshly cloning a repository and running a build for the first time through the Unity CLI (CI/CD) errors similar to the one below are thrown:
Library\PackageCache\[email protected]\Editor\HierarchyDrawer.cs(344,31): error CS0234: The type or namespace name 'PrefabStageUtility' does not exist in the namespace 'UnityEditor.Experimental.SceneManagement' (are you missing an assembly reference?)
Unity Version: 2021.3.20f1
The error above does not prevent the build from finishing, but clutters the output logs with false positives.
Reason behind this is the usage of UnityEditor.Experimental.SceneManagement which has changed in newer version of Unity to UnityEditor.SceneManagement.
The text was updated successfully, but these errors were encountered:
When freshly cloning a repository and running a build for the first time through the Unity CLI (CI/CD) errors similar to the one below are thrown:
Unity Version: 2021.3.20f1
The error above does not prevent the build from finishing, but clutters the output logs with false positives.
Reason behind this is the usage of
UnityEditor.Experimental.SceneManagement
which has changed in newer version of Unity toUnityEditor.SceneManagement
.The text was updated successfully, but these errors were encountered: