: Creates custom GDL objects by extruding a profile along a straight or curved path.
: Enhances walls, roofs, and slabs with detailed objects like floor constructions, roof tiles, or paneling. goodies archicad 27
# A simple goodie that places zones on all rooms named "Office" import Archicad acc = Archicad.Connection() elements = acc.GetElementsByType("Zone") for elem in elements: if elem.property["Name"] == "Office": acc.PlaceZone(elem.location, "Office Zone Template") : Creates custom GDL objects by extruding a
Before installing any Goodie, ensure it explicitly states (build 3000+). Some older extensions (e.g., from AC26 or earlier) may crash due to Apple Silicon native mode on Mac or changes in the API. goodies archicad 27