Open GregRMitchell opened 1 year ago
I have faced the same problem, to fix it I changed the "boardgame_insert_toolkit_lib.2.scad" file a little.
from (line 1745):
MakeAllLidLabels( thickness = thickness );
to:
if (m_has_solid_lid && m_lid_label_depth > 0 )
MakeAllLidLabels( thickness = thickness - m_lid_label_depth );
else
MakeAllLidLabels( thickness = thickness );
I don't know if it breaks other stuff, but for a simple box, it's working.
file for reference: solid_lid_with_label.scad.txt boardgame_insert_toolkit_lib.2.scad.txt
I'm attempting to build a box for Glory to Rome, which came in an awful clamshell package. I put a label on the solid lid with the game name, and it doesn't seem to be paying any attention to the depth settings, instead being a complete void through the whole lid.
Here's my lid code:
Am I doing something wrong, or is it broken?