boneMatrices property

  1. @override
RaylibLiveList<MatrixD> get boneMatrices
override

Implementation

@override get boneMatrices {
  structOnOp((p) => _boneMatrices.ptr = MatrixD.wasmPointer(p.readerAt(_o[.boneMatrices]).pointer()));
  return _boneMatrices;
}
  1. @override
set boneMatrices (List<MatrixD> value)
override

Implementation

@override set boneMatrices(List<MatrixD> value) {
  assert(value.length <= boneMatricesCount);
  structOnOp((p) => _boneMatrices.ptr = MatrixD.wasmPointer(p.readerAt(_o[.boneMatrices]).pointer()));
  _boneMatrices.inner = value;
}