Attachments

CobraLAD

Active member
Is it possible to add more than 1 attach_mesh.im

attach_mesh_20ft_c.im
attach_mesh_20ft_t.im
attach_mesh_40ft_c.im
attach_mesh_45ft_c.im
attach_mesh_48ft_c.im
attach_mesh_53ft_c.im
attach_mesh_gen.im
 
I think the recommendation is one per attachment point but you can have more than one.

For an example look at the config.txt file for kuid2:86627:100721:2 and look for

"a.components"

Cheerio John
 
Hi John

I do not have that asset

I am actually trying to add more than 1 mesh to the mesh table

adding 1 is easy, I tried a few ways to add more, but then there are errors

Code:
  attachments
  {
    mesh                                "attach_mesh.im"
    auto-create                         1
  }

tried below but error that attachment points not found. I am adding about 1000 attachment points. 128 for each type of container. would be easier to manage each type separate

I really hope that it is possible

Code:
  attachments
  {
    0
    { 
      mesh                              "attach_mesh_20ft_c.im"
      auto-create                       1
    }

    1
    { 
      mesh                              "attach_mesh_20ft_t.im"
      auto-create                       1
    }
  }
 
Back
Top