Hi all,
I have several projects that use the starter asset from unity https://assetstore.unity.com/packages/essentials/starter-assets-third-person-character-controller-196526#description and in two of the projects the camera freezes when moving the mouse. I compared the projects and I was able to fix it by removing the last line of the EditorBuildSettings.asset file. Not sure if this is a bug or something I am doing incorrectly in the editor.
One of the broken projects was created today and had no changes done to it except opening of the Input Action Asset UI and Animator UI within the editor. That project worked fine initially when I created it and Imported the starter asset and broke after about 10 minutes of playing within the UI.
FREEZING
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1045 &1
EditorBuildSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Scenes: []
m_configObjects:
com.unity.input.settings: {fileID: 11400000, guid: 9e7be553448fa2546aea5752021cbcf7, type: 2}
FIXED
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1045 &1
EditorBuildSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Scenes: []
m_configObjects: {}
There is a bit more detail in the Unity Answers I posted last night https://answers.unity.com/questions/1903669/unity-assets-third-person-character-controller-cam.html?childToView=1903765#answer-1903765