i’m trying to write a tool script that exposes some of the properties of its child nodes, using _GetPropertyList and _Get/_Set overrides. the problem is that _Set is called before it or any of its children enter the tree, so it errors out when trying to access any of them.
from what i’ve found in GDScript working around this is trivial, by awaiting the ready signal inside the _set function. but to my knowledge, this isn’t possible in c# since await only works in async methods, which _Set can’t be because it has a bool return value.
is there any other simple way to work around it, that works in c#?