copy method

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

Copies value of all the properties from the source to this Light.

Implementation

@override
SpotLightShadow copy(LightShadow source) {
  super.copy(source);
  focus = source.focus;
  return this;
}