copy method

  1. @override
LineDashedMaterial copy(
  1. Material source
)
override

Copy the parameters from the passed material into this material.

Implementation

@override
LineDashedMaterial copy(Material source) {
  super.copy(source);
  scale = source.scale;
  dashSize = source.dashSize;
  gapSize = source.gapSize;
  return this;
}