ursus_materials/strategies/
properties.rs1use crate::value::PropertyId;
2
3pub const BASE_COLOR: PropertyId = PropertyId::new("base_color");
4pub const EMISSIVE: PropertyId = PropertyId::new("emissive");
5pub const METALLIC: PropertyId = PropertyId::new("metallic");
6pub const ROUGHNESS: PropertyId = PropertyId::new("roughness");
7pub const DIFFUSE_TEXTURE: PropertyId = PropertyId::new("diffuse_texture");
8pub const NORMAL_TEXTURE: PropertyId = PropertyId::new("normal_texture");
9pub const METALLIC_ROUGHNESS_TEXTURE: PropertyId = PropertyId::new("metallic_roughness_texture");
10pub const EMISSIVE_TEXTURE: PropertyId = PropertyId::new("emissive_texture");
11pub const OCCLUSION_TEXTURE: PropertyId = PropertyId::new("occlusion_texture");