setD method

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

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

Implementation

@override
SoundD setD(SoundD o) {
  stream.setD(o.stream);
  frameCount = o.frameCount;
  return this;
}