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