io_scene_3ds: Update for Blender 3.x #104507

Closed
Sebastian Sille wants to merge 12 commits from nrgsille-patch-2 into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 4725092bfc - Show all commits

View File

@ -13,6 +13,7 @@ bl_info = {
"version": (0, 1),
"blender": (2, 80, 0),
"description": "Various dependency graph debugging tools",
"location": "Properties > View Layer > Dependency Graph",
"warning": "",
"doc_url": "",
"tracker_url": "",

View File

@ -146,7 +146,8 @@ class NWMergeShadersMenu(Menu, NWBase):
def draw(self, context):
layout = self.layout
for type in ('MIX', 'ADD'):
props = layout.operator(operators.NWMergeNodes.bl_idname, text=type)
name = f'{type.capitalize()} Shader'
props = layout.operator(operators.NWMergeNodes.bl_idname, text=name)
props.mode = type
props.merge_type = 'SHADER'