Should I create prefabs for each model?

Hello, I’m currently working on a large project that will have lots of models. Since every model will have at least one component (Collider) and material, should I create prefabs for each model? What do you think about structure below?

  • Models

    • Category1
      • xmodel
    • Category2
      • ymodel
  • Prefabs

    • Category1
      • xmodel
    • Category2
      • ymodel

It CAN (although will take a bit of complex coding, and probably not advised) make a SINGLE prefab and just have each model a child of that prefab, and when you want to call the prefab just use the prefab reference and GetChild(int Index);

Otherwise my other answer would be to make a separate prefab for each model :stuck_out_tongue: