What is good practice to build configurator?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I have been building a configurator of kitchen cabinets. I had never built a configurator before, so I'm not sure that I do it well. I will be thankful if someone can show the way how to do this right.
Now I have a lot of parts in the assembly, and independent of which configuration I choose, I disable the visibility of not used parts and change BOM structure of the occurrence in the assembly to reference.
oOcc.Visible = False
oOcc.BOMStructure = BOMStructureEnum.kReferenceBOMStructure
I only do these steps, nothing else.
Maybe I should delete unused parts and insert only which I use.
I don't build it in one multi-body part because finally I want to have a BOM with each part separately with their properties.
In the main top assembly, I will put cabinets with different configurations, but each time I will have to save as my cabinet configurator in a new subfolder with all subparts. It is not comfortable, but I will not do this many times annually.
Maybe there is a better way, which I should follow. Thank you in advance for the advice.