ValveSoftware / steamvr_unity_plugin

SteamVR Unity Plugin - Documentation at: https://valvesoftware.github.io/steamvr_unity_plugin/
BSD 3-Clause "New" or "Revised" License
1.04k stars 258 forks source link

Disconnecting is no longer implemented error : cant generate actions #572

Open dpggit opened 5 years ago

dpggit commented 5 years ago

I get the error "Disconnecting is no longer implemented" usintg Unity 2018.3.13f1 and SteamVR 2.4.5 when i try to generate actions

zite commented 5 years ago

Not sure where that’s coming from. Can you post a line number or the full log? Does this happen with newer versions?

On Tue, Oct 29, 2019 at 4:53 PM dpggit notifications@github.com wrote:

I get the error "Disconnecting is no longer implemented" usintg Unity 2018.3.13f1 and SteamVR 2.4.5 when i try to generate actions

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ValveSoftware/steamvr_unity_plugin/issues/572?email_source=notifications&email_token=AABQQMBXLPJJQYLE6QOV4P3QRDEHJA5CNFSM4JGRIWS2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HVHUSQA, or unsubscribe https://github.com/notifications/unsubscribe-auth/AABQQMDWZK4AV6WTM7AAEQDQRDEHJANCNFSM4JGRIWSQ .

dpggit commented 4 years ago

Still happening with Steamvr 2.5, cant generate actions

Disconnecting is no longer implemented UnityEditor.AssetDatabase:Refresh() Valve.VR.SteamVR_Input_Generator:BeginGeneration() (at Assets/SteamVR/Input/Editor/SteamVR_Input_Generator.cs:59) Valve.VR.SteamVR_Input_EditorWindow:SaveFile() (at Assets/SteamVR/Input/Editor/SteamVR_Input_EditorWindow.cs:816) UnityEditor.EditorApplication:Internal_CallDelayFunctions()

briermay commented 4 years ago

as of 2018.3 they removed a feature. see:

https://docs.unity3d.com/ScriptReference/PrefabUtility.DisconnectPrefabInstance.html

so any code using that needs to have it removed. just look for PrefabUtility.DisconnectPrefabInstance and comment out/remove the lines. as of 2018.3 the prefab system got a major overhaul so that function no longer works. hope this helps