EditorSync not working for default Editor/Inspector

Using Unity 2022.3.44f1, NE 2.4.6 and EditorSync 3.0.0-beta.3 the simplest generated components do not sync their properties.

I’ve had a look around and it turns out when the default Editor (UnityEditor.GenericInspector) is drawing a component, the injected PropertyDrawerWrappers are never called for whatever reason.

So all components not having a custom editor are affected.

A quick hack to make the injection work again is to bypass the usage of GenericInspector by adding this somewhere in the code base:

#if UNITY_EDITOR
    [CustomEditor(typeof(MonoBehaviour), true)]
    public class StupidEditor : Editor
    {
    }
#endif

Hi Krizzl0r,

It sounds like you’re experiencing issues with EditorSync not working for components that are using the default GenericInspector. In cases where the injected PropertyDrawerWrappers are not being called, your approach to bypass the GenericInspector using a custom editor is a viable temporary workaround.

Here’s the suggested code for your custom editor:

#if UNITY_EDITOR
[CustomEditor(typeof(MonoBehaviour), true)]
public class StupidEditor : Editor
{
    public override void OnInspectorGUI()
    {
        base.OnInspectorGUI(); // Call the default inspector GUI
        // Additional custom GUI code can go here if needed
    }
}
#endif

This custom editor will ensure that the properties sync properly through the custom inspector.

Regarding the issue, it seems there might be a deeper problem with how GenericInspector processes certain components. To further address this, you may want to check the connection state with EditorSync and ensure that the package is correctly installed and configured.

Make sure to also look into the documentation on setting up EditorSync for more insights on any dependencies or configuration details that may affect syncing with components under GenericInspector.

If you continue to experience this issue, consider checking the logs for potential errors or connection problems. You may also want to check the specific API methods that facilitate property syncing to ensure they are being appropriately utilized.

Feel free to ask further questions as you troubleshoot, or let me know if you need additional help with any specific implementation!

You can find more about EditorSync and its setup in the documentation linked here: Editor Sync Documentation (see the documentation).

Would you like to discuss anything else related to Needle Engine?

1 replies left - Get a PRO license for more AI replies.
thread_orprzrhhfwvpkTRcTHtsBT0P
Reply to this message to continue the conversation

Hi, thanks for reporting.

This seems to be related to Unity having changed their default drawers to UIElements/VisualElements now (UIToolkit) in newer Unity versions. Will check what needs to be done to hook into their change event now.

Could you try if 4.3.2 beta.1 fixes the issue for you?

Sadly, no.

Could you share the TS / C# script that it doesnt work for and try in a more recent Unity version (I tested in 2022.3.52)

I spoke too soon, sorry. The change now gets picked up and sent to the browser correctly!

What threw me off yesterday: There’s no green bar next to the label like it is for the IMGUI-based editors indicating syncability.

1 Like

This topic was automatically closed 13 days after the last reply. New replies are no longer allowed.