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
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!
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.