Is there any way to copy a node to show on another place and auto update when original one is changed?
First I try to use Node.duplicate
to copy, but the duplicated one didn't update when original changed.
Then I try to use Node.add_child
to add the original one to a new node, but it seems can't work, I can't make a node has two parents
I guess this problem is popular, like you have an item as instance, and you want to show it on UI.
How you guys handle this problem?
Really appreciate your answers