setC method
Implementation
@override
LightD setC(LightC o) {
type = .fromValue(o.type);
enabled = o.enabled;
position.setC(o.position);
target.setC(o.target);
color.setC(o.color);
attenuation = o.attenuation;
enabledLoc = o.enabledLoc;
typeLoc = o.typeLoc;
positionLoc = o.positionLoc;
targetLoc = o.targetLoc;
colorLoc = o.colorLoc;
attenuationLoc = o.attenuationLoc;
return this;
}