/// <summary> /// Initializes a new instance of the <see cref="MaterialDiffuseMapFeature"/> class. /// </summary> public MaterialDiffuseMapFeature() { DiffuseMap = new ComputeTextureColor(); }
public ComputeColorParameterTexture() { Texture = new ComputeTextureColor(); }
/// <summary> /// Initializes a new instance of the <see cref="MaterialSpecularMapFeature"/> class. /// </summary> public MaterialSpecularMapFeature() { SpecularMap = new ComputeTextureColor(); Intensity = new ComputeFloat(1.0f); IsEnergyConservative = true; }