SpaceshipGenerator icon indicating copy to clipboard operation
SpaceshipGenerator copied to clipboard

A Blender script to procedurally generate 3D spaceships

Results 25 SpaceshipGenerator issues
Sort by recently updated
recently updated
newest added

Would it be possible to add a trivial GUI such as via pygobject, as well as means to generate different spaceships via blender from the commandline, to then display these...

Report: Error Python: Traceback (most recent call last): File "/Users/enda/Library/Application Support/Blender/3.1/scripts/addons/add mesh SpaceshipGenerator/_init_.py",line 43, in execute spaceship generator.generate spaceship( File "/Users/enda/Library/Application Support/Blender/3.1/scripts/addons/add mesh SpaceshipGenerator/spaceship generator.py", line 669, in generate spaceship...

I had also to change following lines/commands in spaceship_generator.py to work again in Blender 3.1: bmesh.ops.create_icosphere - now needs parameter radius instead of diameter - line 310 bmesh.ops.create.cone - radius1,...

``` bpy.ops.object.origin_set(type='ORIGIN_CENTER_OF_MASS', center='MEDIAN') bpy.ops.mesh.generate_spaceship() Python: Traceback (most recent call last): File "/home/kenorb/.config/blender/2.93/scripts/addons/add_mesh_SpaceshipGenerator/__init__.py", line 43, in execute spaceship_generator.generate_spaceship( File "/home/kenorb/.config/blender/2.93/scripts/addons/add_mesh_SpaceshipGenerator/spaceship_generator.py", line 724, in generate_spaceship materials = create_materials() File "/home/kenorb/.config/blender/2.93/scripts/addons/add_mesh_SpaceshipGenerator/spaceship_generator.py", line 458,...

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

Gave some life to the python code by adding comments. ;-)

Cones and spheres now use radius instead of diameter

Python: Traceback (most recent call last): File "C:\Users\Sujaya\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\add_mesh_SpaceshipGenerator\__init__.py", line 43, in execute spaceship_generator.generate_spaceship( File "C:\Users\Sujaya\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\add_mesh_SpaceshipGenerator\spaceship_generator.py", line 669, in generate_spaceship add_surface_antenna_to_face(bm, face) File "C:\Users\Sujaya\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\add_mesh_SpaceshipGenerator\spaceship_generator.py", line 341, in add_surface_antenna_to_face...

This PR and new branch renames the bmesh.ops command arguments to the new API so this addon can work with Blender 3.x **This might break the addon in 2.9 or...