dppdppd / The-Boardgame-Insert-Toolkit

This OpenSCAD library was created to make it easy to create board game inserts with lids for either horizontal or vertical storage, without any programming required.
296 stars 46 forks source link

Label not displaying on lid when box is stackable. #24

Open MikiGrit opened 3 years ago

MikiGrit commented 3 years ago

I have trouble displaying label on lid when the box is stackable. When I turn it off, the label appears.

dppdppd commented 3 years ago

Can you post a sample that demonstrates the issue?

This works for me in this case:

data =
[ 
    [   "simple stacking box",
        [
            [ BOX_SIZE_XYZ,                                     [45, 45, 15.0] ],
            [ BOX_STACKABLE_B, t],

            [ BOX_COMPONENT,
                [
                    [CMP_COMPARTMENT_SIZE_XYZ,  [ 42, 42, 13.0] ],
                ]
            ],    

            [ BOX_LID,[[ LABEL,[[ LBL_TEXT,     "Label"]]]]]                            
        ]
    ]
];