getValue method

dynamic getValue(
  1. String name
)

Implementation

getValue(String name) {
  if (name == "boneMatrices") {
    return boneMatrices;
  } else {
    throw ("Skeleton getValue name: $name is not support  ");
  }
}