2022年12月8日 星期四

PolyQuilt Smooth 工具錯誤解法

到C槽使用者

AppData\Roaming\Blender Foundation\Blender\3.4\scripts\addons\PolyQuilt\subtools\subtool_brush_relax.py

並將第 93 行 

bpy.ops.view3d.select_circle( x = coord.x , y = coord.y , radius = radius , wait_for_input=False, mode='SET' )

更改為

bpy.ops.view3d.select_circle( x = int(coord.x), y = int(coord.y) , radius = int(radius) , wait_for_input=False, mode='SET' )

並重新啟動攪拌機。