From 09b1e513a03c09a19a4e6cd4bb7a418b7f6dc449 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Sat, 30 May 2026 02:35:42 +0000 Subject: [PATCH 1/2] Update leenkx/Sources/leenkx/trait/internal/DebugConsole.hx --- leenkx/Sources/leenkx/trait/internal/DebugConsole.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leenkx/Sources/leenkx/trait/internal/DebugConsole.hx b/leenkx/Sources/leenkx/trait/internal/DebugConsole.hx index f9304e92..7b93302d 100644 --- a/leenkx/Sources/leenkx/trait/internal/DebugConsole.hx +++ b/leenkx/Sources/leenkx/trait/internal/DebugConsole.hx @@ -838,7 +838,7 @@ class DebugConsole extends Trait { highLightNext(kha.Color.fromFloats(0.447, 0.247, 0.188)); ui.text('Not enough space in atlas for ${atlas.rejectedLights.length} light${atlas.rejectedLights.length > 1 ? "s" : ""}:'); ui.indent(); - ui.text(${rejectedLightsNames}); + ui.text(rejectedLightsNames); ui.unindent(false); } From c3ce85887aae023d99c956c0f4f84b4e3190d3a5 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Sat, 30 May 2026 02:39:42 +0000 Subject: [PATCH 2/2] Update leenkx/blender/lnx/props_renderpath.py --- leenkx/blender/lnx/props_renderpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/props_renderpath.py b/leenkx/blender/lnx/props_renderpath.py index 5da4b1df..05cbb9ea 100644 --- a/leenkx/blender/lnx/props_renderpath.py +++ b/leenkx/blender/lnx/props_renderpath.py @@ -348,7 +348,7 @@ class LnxRPListItem(bpy.types.PropertyGroup): rp_shadowmap_atlas_auto: BoolProperty(name="Automatic Atlasing", description="Automatically compute atlas sizes based on max lights and shadow map sizes", default=True, update=update_renderpath) rp_shadowmap_atlas_single_map: BoolProperty(name="Shadow Map Atlas single map", description="Use a single texture for all different light types.", default=False, update=update_renderpath) rp_shadowmap_atlas_lod: BoolProperty(name="Shadow Map Atlas LOD (Experimental)", description="When enabled, the size of the shadow map will be determined on runtime based on the distance of the light to the camera", default=False, update=update_renderpath) - rp_shadowmap_transparent: BoolProperty(name="Transparency", description="Enable shadows for transparent objects", default=False, update=update_renderpath) + rp_shadowmap_transparent: BoolProperty(name="Transparency", description="Enable shadows for transparent objects", default=True, update=update_renderpath) rp_shadowmap_atlas_lod_subdivisions: EnumProperty( items=[('2', '2', '2'), ('3', '3', '3'),