setC method

  1. @override
MaterialMapD setC(
  1. MaterialMapC o
)
override

Copies the fields of the native struct o into this instance.

Implementation

@override
MaterialMapD setC(MaterialMapC o) {
  texture.setC(o.texture);
  color.setC(o.color);
  value = o.value;
  return this;
}