texture property

  1. @override
TextureD get texture
override

Implementation

@override get texture {
  structOnOp((p) => _texture.wasmReadFrom(p.readerAt(_o[.texture])));
  return _texture;
}
  1. @override
set texture (TextureD value)
override

Implementation

@override set texture(TextureD value) {
  _texture = value;
  structOnOp((p) => value.wasmWriteInto(p.writerAt(_o[.texture])));
}