-
Notifications
You must be signed in to change notification settings - Fork 41
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
Smooth tool not working on blender 3.1. #52
Comments
Confirming, it is broken for me in Blender 3.1 |
Not working in my case as well in 3.1 |
me to( |
Same here :( |
For anyone else with this problem, Blender 3.1 updated python from 3.9 to 3.10, which removed implicit conversion of floats to ints. For a quick fix for the relaxation tool go to PolyQuilt\Subtools\subtool_brush_relax.py and change line 93 from |
Meeeeeen)) you are a god! |
Cheers, that did it. |
This worked!! thank you so much! |
wow...thank you... |
Thank you. By correcting the following as you pointed out, we were able to handle brush resizing. |
location: :-1
Error: Python: Traceback (most recent call last):
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\pq_operator.py", line 172, in modal
raise e
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\pq_operator.py", line 168, in modal
val = self.update( context, event)
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\pq_operator.py", line 205, in update
ret = self.currentSubTool.Update(context, event)
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\subtools\subtool.py", line 97, in Update
ret = subTool.Update(context , event)
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\subtools\subtool.py", line 116, in Update
ret = self.OnUpdate(context,event)
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\subtools\subtool_brush_relax.py", line 58, in OnUpdate
self.DoRelax( context ,self.mouse_pos )
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\subtools\subtool_brush_relax.py", line 147, in DoRelax
coords = self.CollectVerts( context, coord )
File "C:\Users\74091\AppData\Roaming\Blender Foundation\Blender\3.1\scripts\addons\PolyQuilt\subtools\subtool_brush_relax.py", line 93, in CollectVerts
bpy.ops.view3d.select_circle( x = coord.x , y = coord.y , radius = radius , wait_for_input=False, mode='SET' )
File "I:\Program Files\Blender Foundation\Blender 3.1\3.1\scripts\modules\bpy\ops.py", line 132, in call
ret = _op_call(self.idname_py(), None, kw)
TypeError: Converting py args to operator properties: VIEW3D_OT_select_circle.x expected an int type, not float
location: :-1
The text was updated successfully, but these errors were encountered: