updateNode method
dynamic
updateNode(
- dynamic node
Implementation
updateNode(node) {
if (node.updateType == NodeUpdateType.Frame) {
if (this.updateMap.get(node) != this.frameId) {
this.updateMap.set(node, this.frameId);
node.update(this);
}
} else if (node.updateType == NodeUpdateType.Object) {
node.update(this);
}
}