@override Points copy(Object3D source, [bool? recursive]) { super.copy(source); if (source is Points) { material = source.material; geometry = source.geometry; } return this; }