We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Blender 2.92 there was no errors. The source of the problem is changes in NumPy library.
# NumPy v1.17.5 >>> numpy.linspace(0.1, 0.1, 2.5) array([0.1, 0.1]) # NumPy v1.19.5 >>> numpy.linspace(0.1, 0.1, 2.5) Traceback (most recent call last): File "C:\Program Files\Blender Foundation\Blender 2.93\2.93\python\lib\site-packages\numpy\core\function_base.py", line 113, in linspace num = operator.index(num) TypeError: 'float' object cannot be interpreted as an integer
The number range node is not the only node to be suffered I guess.
The text was updated successfully, but these errors were encountered:
c60acf2
No branches or pull requests
Problem statement
In Blender 2.92 there was no errors. The source of the problem is changes in NumPy library.
The number range node is not the only node to be suffered I guess.
The text was updated successfully, but these errors were encountered: