copy method

  1. @override
SpotLightShadow copy(
  1. LightShadow source
)
override

Implementation

@override
SpotLightShadow copy(LightShadow source) {
  super.copy(source);

  focus = source.focus;

  return this;
}