6 #include "../core/document.h" 8 #include "../render/renderlist.h" 9 #include "../render/texture.h" 14 PROPERTY(
double, opacity, 1.0, min = 0, max = 1);
15 PROPERTY(
double, roughness, 0.4, min = 0, max = 1);
16 PROPERTY(
double, metallic, 0.0, min = 0, max = 1);
17 PROPERTY(std::string, texture,
"");
18 PROPERTY(std::string, normals,
"");
20 Material(
float r,
float g,
float b,
float a = 1);
27 PROPERTY(
bool, color,
false);
28 PROPERTY(
bool, parameters,
false);
29 PROPERTY(
bool, texture,
false);
30 PROPERTY(
bool, normals,
false);
31 PROPERTY(std::shared_ptr<Material>, material, std::make_shared<Material>());
39 std::shared_ptr<const Material> _material;
40 std::shared_ptr<const MaterialOverride> _material_override;
42 std::string _color_texture_url, _normal_texture_url;
43 std::shared_ptr<Texture> _color_texture, _normal_texture;
44 void updateSync(
const Material &material);
51 std::shared_ptr<const Material> material,
52 std::shared_ptr<const MaterialOverride> material_override =
nullptr);
58 bool pick(uint32_t
id)
const {
return _block.id == id; }
59 uint32_t id()
const {
return _block.id; }