-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG]Bevel and displace not working #189
Comments
Hi! |
I'm having the same issue even after replacing the .py files in the addon. |
I also changed the line in the "Sorcar / nodes / _base / node_modifier.py" file. Instead of: bpy.ops.object.modifier_apply (apply_as = 'DATA', modifier = self.prop_mod_name) I wrote in: bpy.ops.object.modifier_apply (modifier = self.prop_mod_name) |
@yoosme , I have also commented on Issue #188 in more details if you need. |
Blender version 2.90.1
Sorcar version 3.2.1
bevel
Traceback (most recent call last):
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\operators\ScExecuteNode.py", line 19, in execute
curr_tree.execute_node()
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\tree\ScNodeTree.py", line 77, in execute_node
if (not n.execute()):
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\nodes_base\node_base.py", line 56, in execute
self.functionality()
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\nodes\component_operators\ScBevel.py", line 78, in functionality
spread = self.inputs["Spread"].default_value
File "C:\Program Files\Blender Foundation\Blender 2.90\2.90\scripts\modules\bpy\ops.py", line 201, in call
ret = op_call(self.idname_py(), None, kw)
TypeError: Converting py args to operator properties: : keyword "vertex_only" unrecognized
location: :-1
displace
Traceback (most recent call last):
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\operators\ScExecuteNode.py", line 19, in execute
curr_tree.execute_node()
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\tree\ScNodeTree.py", line 77, in execute_node
if (not n.execute()):
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\nodes_base\node_base.py", line 57, in execute
self.node_error = not self.init_out(self.post_execute())
File "C:\Users\KITE01\AppData\Roaming\Blender Foundation\Blender\2.90\scripts\addons\Sorcar-master\nodes_base\node_modifier.py", line 28, in post_execute
bpy.ops.object.modifier_apply(apply_as='DATA', modifier=self.prop_mod_name)
File "C:\Program Files\Blender Foundation\Blender 2.90\2.90\scripts\modules\bpy\ops.py", line 201, in call
ret = op_call(self.idname_py(), None, kw)
TypeError: Converting py args to operator properties: : keyword "apply_as" unrecognized
location: :-1
The text was updated successfully, but these errors were encountered: