You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pulga Inflate Force node is returning the following error in Blender 4.2.3:
[ERROR] sverchok.node_error __init__.py:305 - module 'numpy' has no attribute 'object'.
`np.object` was a deprecated alias for the builtin `object`. To avoid this error in existing code, use `object` by itself. Doing this will not modify any behavior and is safe.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
Steps to reproduce
Add Pulga Inflate Force node
Attach an input to the polygon socket
Attach output socket to something
Once steps 2 and 3 have been done, the above error message appears in both node editor and the console
A plane, box and torus all throw the error with Inflate node, but not other Pulga nodes:
Not shown but possibly relevant for troubleshooting, the error is also thrown when an invalid input like Vertices is connected to the Polygons socket
Sverchok version
installed from release zip file, release 1.3.0, Blender version is 4.2.3 compiled for Windows 7
The text was updated successfully, but these errors were encountered:
line 1336 of pulga_physics_modular_core.py in sverchok's utils folder (part of the SvInflateForce class code) if np_pols.dtype == np.object:
needs to be changed to: if np_pols.dtype == object:
The node functions without issue with this fix applied.
The Pulga Inflate Force node is returning the following error in Blender 4.2.3:
Steps to reproduce
A plane, box and torus all throw the error with Inflate node, but not other Pulga nodes:
Not shown but possibly relevant for troubleshooting, the error is also thrown when an invalid input like Vertices is connected to the Polygons socket
Sverchok version
installed from release zip file, release 1.3.0, Blender version is 4.2.3 compiled for Windows 7
The text was updated successfully, but these errors were encountered: