@ -181,19 +181,23 @@ class PlasmaModifierProperties(bpy.types.PropertyGroup):
class PlasmaModifierLogicWiz :
class PlasmaModifierLogicWiz :
def convert_logic ( self , bo , * * kwargs ) :
def convert_logic ( self , bo , * * kwargs ) :
""" Creates, converts, and returns an unmanaged NodeTree for this logic wizard. If the wizard
""" Attempts to look up an already existing logic tree matching the name provided and returns
fails during conversion , the temporary tree is deleted for you . However , on success , you
it , if found . If not , creates , converts , and returns an unmanaged NodeTree for this wizard .
are responsible for removing the tree from Blender , if applicable . """
If the wizard fails during conversion , the temporary tree is deleted for you . However , on
success , you are responsible for removing the tree from Blender , if applicable . """
name = kwargs . pop ( " name " , self . key_name )
name = kwargs . pop ( " name " , self . key_name )
assert not " tree " in kwargs
assert not " tree " in kwargs
tree = bpy . data . node_groups . new ( name , " PlasmaNodeTree " )
node_groups = bpy . data . node_groups
tree = node_groups . get ( name )
if tree is None :
tree = node_groups . new ( name , " PlasmaNodeTree " )
kwargs [ " tree " ] = tree
kwargs [ " tree " ] = tree
try :
try :
self . logicwiz ( bo , * * kwargs )
self . logicwiz ( bo , * * kwargs )
except :
except :
bpy . data . node_groups . remove ( tree )
bpy . data . node_groups . remove ( tree )
raise
raise
else :
return tree
return tree
def _create_python_file_node ( self , tree , filename : str , attributes : Dict [ str , Any ] ) - > bpy . types . Node :
def _create_python_file_node ( self , tree , filename : str , attributes : Dict [ str , Any ] ) - > bpy . types . Node :