copy method

LightShadow copy(
  1. LightShadow source
)

Implementation

LightShadow copy(LightShadow source) {
  camera = source.camera?.clone();

  bias = source.bias;
  radius = source.radius;

  mapSize.copy(source.mapSize);

  return this;
}