diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-30 18:33:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 18:33:34 +0200 |
commit | dd2cd06165670bb0d78bf4aa397935be15716e76 (patch) | |
tree | 87017115deb9dafbc9f6ee7e003e024f1d5f48cf /drivers/dummy | |
parent | 06440408727cf30c2220b1a9225b14467302a8d0 (diff) | |
parent | de33ef2d1b94c1d3acc1cfa708665c99d0d0bb43 (diff) |
Merge pull request #25670 from aqnuep/bake_mode_affect_gi_prove
Disable GI probe capturing lights with bake mode disabled
Diffstat (limited to 'drivers/dummy')
-rw-r--r-- | drivers/dummy/rasterizer_dummy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/dummy/rasterizer_dummy.h b/drivers/dummy/rasterizer_dummy.h index c0e07e0b8d..3b31da1dd7 100644 --- a/drivers/dummy/rasterizer_dummy.h +++ b/drivers/dummy/rasterizer_dummy.h @@ -484,6 +484,7 @@ public: void light_set_negative(RID p_light, bool p_enable) {} void light_set_cull_mask(RID p_light, uint32_t p_mask) {} void light_set_reverse_cull_face_mode(RID p_light, bool p_enabled) {} + void light_set_use_gi(RID p_light, bool p_enabled) {} void light_omni_set_shadow_mode(RID p_light, VS::LightOmniShadowMode p_mode) {} void light_omni_set_shadow_detail(RID p_light, VS::LightOmniShadowDetail p_detail) {} @@ -503,6 +504,7 @@ public: AABB light_get_aabb(RID p_light) const { return AABB(); } float light_get_param(RID p_light, VS::LightParam p_param) { return 0.0; } Color light_get_color(RID p_light) { return Color(); } + bool light_get_use_gi(RID p_light) { return false; } uint64_t light_get_version(RID p_light) const { return 0; } /* PROBE API */ |