I want to make custom Node3D with custom properties which need to show up in the editor and when I changes made it must replicated on the editor (not just in the game). I am now using @tool and @export for this but this feels inefficient and wrong. I have to use signals to get job done. This is some what okay because setters play main role. But If I export Array of something (Resource) and add it in inspector there’s no way (atleast I don’t know) to emit signal because there is no way to observe adding or removing item. If you guys can direct me in right path that would be very helpful. Thank you for your support.
I am not sure if there is any way of doing what you are looking for. You can create your custom nodes with GDExtension and some language such as C++ for example but I would not recommend this for your case as this requires a lot more work.