getValue method

Float32Array getValue(
  1. String name
)

Implementation

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