From 4b66e18b7b795669856bca40abe42e476b50b58b Mon Sep 17 00:00:00 2001 From: hentila <59379013+hentila@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:13:45 +0200 Subject: [PATCH] Fixed compatibility with Blender version 4.3 mat.shadow_method is removed from Blender 4.3 --- __init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/__init__.py b/__init__.py index e3116e4..6108b0a 100644 --- a/__init__.py +++ b/__init__.py @@ -161,7 +161,6 @@ def create_compify_material(name, camera, footage): mat = bpy.data.materials.new(name) mat.use_nodes = True mat.blend_method = 'HASHED' - mat.shadow_method = 'HASHED' for node in mat.node_tree.nodes: mat.node_tree.nodes.remove(node)