copy method
Copy the parameters from the passed material into this material.
Implementation
@override
ShadowMaterial copy(Material source) {
super.copy(source);
color.setFrom(source.color);
fog = source.fog;
return this;
}
Copy the parameters from the passed material into this material.
@override
ShadowMaterial copy(Material source) {
super.copy(source);
color.setFrom(source.color);
fog = source.fog;
return this;
}