Class TextureKeys

java.lang.Object
dev.engine.graphics.texture.TextureKeys

public final class TextureKeys extends Object
Standard texture property keys for materials. Each key maps to a SampledTexture — texture data paired with sampler configuration.
MaterialData.create("PBR")
    .set(TextureKeys.ALBEDO_TEXTURE, new SampledTexture(albedo))
    .set(TextureKeys.NORMAL_TEXTURE, new SampledTexture(normalMap, SamplerDescriptor.nearest()));