How to make Floor and Modify Slab Shape in one Run?

currently I make floor with builtin node, then modify using Python SlabShapeEditor. But this only works if running twice: On first run, freeze the slabShapeEditor node and make floor, on second run unfreeze slabShapeEditor to modify the shape with a list of points.

I really want to do this in one operation, and I’m guessing this is a transaction problem. Do I need to make my own MakeFloorAndEditShape python node to do this in a single Run?

Or is there another way?

Sounds like you’ll want a Transaction.End node between the node that makes floors and the one that’s modifying them.

3 Likes

That worked, thanks @Andreas_Dieckmann

1 Like