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
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: