EEVEE-Next: Rename lightprobe volume single sided to backface cull

This also modifies the RNA access path for consistency.
This was a long standing change that was oversighted.
This commit is contained in:
Clément Foucault
2024-06-10 21:54:58 +02:00
parent d5ac372715
commit e6ca5f00d5
2 changed files with 11 additions and 13 deletions

View File

@@ -319,6 +319,7 @@ class EEVEE_NEXT_MATERIAL_PT_settings_surface(MaterialButtonsPanel, Panel):
col = layout.column(heading="Backface Culling")
col.prop(mat, "use_backface_culling", text="Camera")
col.prop(mat, "use_backface_culling_shadow", text="Shadow")
col.prop(mat, "use_backface_culling_lightprobe_volume", text="Light Probe Volume")
col = layout.column(align=True)
col.prop(mat, "displacement_method", text="Displacement")
@@ -343,9 +344,6 @@ class EEVEE_NEXT_MATERIAL_PT_settings_surface(MaterialButtonsPanel, Panel):
if mat.surface_render_method == 'DITHERED':
col.prop(mat, "use_thickness_from_shadow", text="From Shadow")
col = layout.column(heading="Light Probe Volume")
col.prop(mat, "lightprobe_volume_single_sided", text="Single Sided")
class EEVEE_NEXT_MATERIAL_PT_settings_volume(MaterialButtonsPanel, Panel):
bl_label = "Volume"