Make objects safe to edit - s-leger/archipack GitHub Wiki

Archipack objects are regular Blender meshes so you may edit them any time with standard modeling tools. However, if you later change their parameters on the Archipack panel, your manual edits will be lost.

In order to prevent loosing your changes and get a "safe to edit by hand" non-archipack-aware mesh, use either "selected" or "all" found in Archipack Tools -> Kill parameters.

There is no undo for this operation, so be careful!

In the free version in Blender 2.8

In the free version there is no "Kill parameters" option. Therefore, you have to select your object then open the Python console and issue the following command:

C.active_object.data.archipack_XXXX.clear()

The XXXX must match the type of object you selected! XXXX can be "wall2", "floor", etc. To see the possible values, enter C.active_object.data.archipack_ then press TAB and select the value which matches the type of your object.