Go to homepage
1 / 6
Mar 2016
1 month later

I noticed this too and have two solutions:

1) I found that I could export individual objects if I use the 3D printing addon. Select the object I want to export, click on the “ExportActive Object using 3Dprint settings” and that works fine, but Blender assigns a file name for you.

2) However, if you try to export using File->Export->STL, it will export all the objects. I found altering default in the following file worked:

scripts/addons/io_mesh_stl/__init__.py

There is a section:

use_selection = BoolProperty(
name=“Selection Only”,
description=“Export selected objects only”,
default=False,
)

Set False to True.

Hope this helps.