[Bf-blender-cvs] [912a1e2820c] master: Fix: Order of node mixins in custom nodes python template

Hans Goudey noreply at git.blender.org
Thu Sep 29 19:03:07 CEST 2022


Commit: 912a1e2820cc2c63d75feccd93c4552835ea0543
Author: Hans Goudey
Date:   Thu Sep 29 11:59:02 2022 -0500
Branches: master
https://developer.blender.org/rB912a1e2820cc2c63d75feccd93c4552835ea0543

Fix: Order of node mixins in custom nodes python template

See T101259. This order makes the poll not work, even when called from
Python. The bundled template shouldn't be a source of errors for node
addons.

===================================================================

M	release/scripts/templates_py/custom_nodes.py

===================================================================

diff --git a/release/scripts/templates_py/custom_nodes.py b/release/scripts/templates_py/custom_nodes.py
index fba94e23d0d..fd2dfe91b39 100644
--- a/release/scripts/templates_py/custom_nodes.py
+++ b/release/scripts/templates_py/custom_nodes.py
@@ -61,7 +61,7 @@ class MyCustomTreeNode:
 
 
 # Derived from the Node base type.
-class MyCustomNode(Node, MyCustomTreeNode):
+class MyCustomNode(MyCustomTreeNode, Node):
     # === Basics ===
     # Description string
     '''A custom node'''



More information about the Bf-blender-cvs mailing list