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
Hello, spaceship generator - which I find AMUSING! - did not work anymore on my Blender 3.1: being a programmer I was able to reaad the log (it's an int - float conversion error) and managed to fix it in this way:
in spaceship_generator.py on line 340 simply substituted
num_segments = uniform(3, 6)
with
num_segments = int( uniform(3, 6) )
Now it works again! Hope this is useful to other people.
Thanks again for this beautiful piece of software!
Sincerely,
Giorgio
The text was updated successfully, but these errors were encountered:
Hello, spaceship generator - which I find AMUSING! - did not work anymore on my Blender 3.1: being a programmer I was able to reaad the log (it's an int - float conversion error) and managed to fix it in this way:
num_segments = uniform(3, 6)
with
num_segments = int( uniform(3, 6) )
Now it works again! Hope this is useful to other people.
Thanks again for this beautiful piece of software!
Sincerely,
Giorgio
The text was updated successfully, but these errors were encountered: