SpaceshipGenerator icon indicating copy to clipboard operation
SpaceshipGenerator copied to clipboard

No more working in 3.1 - quick fix

Open giouti opened this issue 2 years ago • 0 comments

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

giouti avatar Mar 14 '22 16:03 giouti