dropChild method
- @override
override
Disconnect the given node from this node.
Subclasses should call this function when they lose a child.
Implementation
@override
void dropChild(AbstractNode child) {
markNeedsAddToScene();
super.dropChild(child);
}