setD method

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

Copies the fields of o into this instance and returns this.

Implementation

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