setDart method

  1. @override
MaterialMapD setDart(
  1. MaterialMapD o
)
override

Copies the fields of o into this instance.

Implementation

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