PropertyBinding constructor

PropertyBinding(
  1. Object3D? rootNode,
  2. String path,
  3. Map<String, dynamic>? parsedPath
)

Implementation

PropertyBinding(this.rootNode, this.path, Map<String, dynamic>? parsedPath) {
  this.parsedPath = parsedPath ?? PropertyBinding.parseTrackName(path);
  node = PropertyBinding.findNode(rootNode, this.parsedPath["nodeName"]) ?? rootNode;
  getValue = getValueUnbound;
  setValue = setValueUnbound;
}