6 #include "../core/log.h" 10 LightDisplayBase::renderSync(context);
13 light.color = color().toLinearVector4f().head(3) * (float)brightness();
14 light.type = (uint32_t)LightType::Ambient;
15 context.render_list->push(light);
23 LightDisplayBase::renderSync(context);
25 auto pose = context.pose;
27 pose = this->transform().toIsometry3d();
30 light.position.head(3) = pose.translation().cast<
float>();
31 light.pose = pose.inverse().matrix().cast<
float>();
32 light.color = color().toLinearVector4f().head(3) * (float)brightness();
34 (uint32_t(LightType::Directional) |
35 (viewSpace() ? uint32_t(LightType::ViewSpace) : uint32_t(0)));
36 context.render_list->push(light);
44 LightDisplayBase::renderSync(context);
46 auto pose = context.pose;
48 pose = this->transform().toIsometry3d();
51 light.position.head(3) = pose.translation().cast<
float>();
52 light.pose = pose.inverse().matrix().cast<
float>();
53 light.color = color().toLinearVector4f().head(3) * (float)brightness();
55 (uint32_t(LightType::Point) |
56 (viewSpace() ? uint32_t(LightType::ViewSpace) : uint32_t(0)));
57 context.render_list->push(light);
64 PROPERTY(
double, softness, 0.5, min = 0.0, max = 1.0);
65 PROPERTY(
double, angle, 90, min = 0.0, max = 180);
67 LightDisplayBase::renderSync(context);
69 auto pose = context.pose;
71 pose = this->transform().toIsometry3d();
74 light.position.head(3) = pose.translation().cast<
float>();
76 (projectionMatrix(std::max(1e-6, std::min(180.0 - 1e-3, angle())) *
79 pose.inverse().matrix())
81 light.color = color().toLinearVector4f().head(3) * (float)brightness();
83 (uint32_t(LightType::Spot) |
84 (viewSpace() ? uint32_t(LightType::ViewSpace) : uint32_t(0)));
85 light.softness = std::max(0.0001f, std::min(1.0f, (
float)softness()));
86 context.render_list->push(light);