Hello, do you know how to integrate a construction phase at the input of a block like “add toposolid” or “addwall”? Indeed, my object is automatically created in construction phase 3 in Revit, and I have to manually set it to existing for it to appear. I would like it to automatically be in the existing creation phase when I create it.
Thanks a lot Japhy
- Use the “Element.SetParameter” node in Grasshopper.
- Set “Phase Created” to “Existing” before finalizing the object.
- If using Python/C#, use
element.LookupParameter("Phase Created").Set("Existing")
.
Thank you, there is also a very simple solution on the discussion that Japhy shared.