copy method

  1. @override
Object3D copy(
  1. Object3D source, [
  2. bool? recursive
])
override

Implementation

@override
copy(Object3D source, [bool? recursive]) {
  super.copy(source);

  HemisphereLight source1 = source as HemisphereLight;

  groundColor!.copy(source1.groundColor!);

  return this;
}