Skip to content

Commit

Permalink
HOTFIX BlenderHelpers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LubomirJagos authored Sep 28, 2023
1 parent c838b53 commit 03be9c7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions utilsOpenEMS/GuiHelpers/BlenderHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@
from mathutils import Vector

class BlenderToCadObject:
#
# __init__() must be REPAIRED!!!
#
def __init__(self, blenderObj):
super(BlenderHelpers, self).__init__(APP_DIR)
#
# ERROR this is not running, need to figure out but with this in Blender UI is not opened!!!
# NEED TO BE REPAIRED!!!
# HOTFIX for now Sep2023 to comment it and need to test GUI in Blender if it's running
#
#super(BlenderHelpers, self).__init__(APP_DIR)

self.Label = blenderObj.name
try:
Expand Down Expand Up @@ -182,4 +190,4 @@ def removeObject(self, objName):
o.select_set(True)

# Call the operator only once
bpy.ops.object.delete()
bpy.ops.object.delete()

0 comments on commit 03be9c7

Please sign in to comment.