Blender 2.8 - 4.5 Support
This commit is contained in:
@ -103,11 +103,11 @@ class BlendSpaceNode(LnxLogicTreeNode):
|
||||
self.remove_advanced_draw()
|
||||
|
||||
def get_blend_space_points(self):
|
||||
if bpy.context.space_data.edit_tree == self.get_tree():
|
||||
if bpy.context.space_data is not None and bpy.context.space_data.edit_tree == self.get_tree():
|
||||
return self.blend_space.points
|
||||
|
||||
def draw_advanced(self):
|
||||
if bpy.context.space_data.edit_tree == self.get_tree():
|
||||
if bpy.context.space_data is not None and bpy.context.space_data.edit_tree == self.get_tree():
|
||||
self.blend_space.draw()
|
||||
|
||||
def lnx_init(self, context):
|
||||
|
Reference in New Issue
Block a user