Getting frustrated with inaccurate (out dated), incomplete and scattered info.

WE crossed when I was adding a bit look at the ones built in or on the DLS they are stitched mesh 2.9 see kuid:77174:100467
 
I Did a search for kuid:77174:100467 using CM2.0 nothing.
Did a search for kuid:77174:100467 using CM3.6 found it.
Downloaded.
Saved to CDP.
Imported using CM2.0
Error: The Tag 'surveyor-only' is not permitted within a container of type 'track'.

I must not be expressing myself correctly. My problem is not in TS12.

If I use the invisible tag with a version of 2.0, I get no error. But I get errors trying to make it version 2.9.

Now, what the bleep is a stitched mesh?!
 
I Did a search for kuid:77174:100467 using CM2.0 nothing.
Did a search for kuid:77174:100467 using CM3.6 found it.
Downloaded.
Saved to CDP.
Imported using CM2.0
Error: The Tag 'surveyor-only' is not permitted within a container of type 'track'.

I must not be expressing myself correctly. My problem is not in TS12.

If I use the invisible tag with a version of 2.0, I get no error. But I get errors trying to make it version 2.9.

Now, what the bleep is a stitched mesh?!

Stitched mesh is the new format for splines, actually it's a somewhat different and more complicated config file

An example of the changed bits below, read and weep!

Code:
mesh-table
{
  track-lod0-high
  {
    mesh                                "track_0h.im"
  }
  
  track-lod0
  {
    mesh                                "track_0l.im"
  }
  
  track-lod1
  {
    mesh                                "track_1.im"
  }
  
  track-lod2
  {
    mesh                                "track_2.im"
  }
  
  track-lod3
  {
    mesh                                "track_3.im"
  }
  
  endcap_prev
  {
    mesh                                "endcap_prev.im"
  }
  
  endcap_next
  {
    mesh                                "endcap_next.im"
  }
}

track
{
  mesh-length                           5.5
  adjust-cross-section-to-ground        0
  adjust-height-to-ground-offset        0
  use-superelevation                    0
  
  track-lod-tree
  {
    lod-distance                        288
    
    high-detail
    {
      lod-distance                      112
      
      high-detail
      {
        lod-distance                    40
        
        high-detail
        {
          lod-distance                  16
          subdivisions                  1
          
          high-detail
          {
            mesh                        "track-lod0-high"
          }
          
          low-detail
          {
            mesh                        "track-lod0"
          }
        }
        
        low-detail
        {
          lod-distance                  32
          subdivisions                  1
          lod-tessellation-length       1
          
          high-detail
          {
            mesh                        "track-lod1"
          }
          
          low-detail
          {
            mesh                        "track-lod1"
          }
        }
      }
      
      low-detail
      {
        lod-distance                    112
        subdivisions                    1
        lod-tessellation-length         1
        
        high-detail
        {
          mesh                          "track-lod2"
        }
        
        low-detail
        {
          mesh                          "track-lod2"
        }
      }
    }
    
    low-detail
    {
      lod-distance                      288
      subdivisions                      1
      lod-tessellation-length           1
      
      high-detail
      {
        mesh                            "track-lod3"
      }
      
      low-detail
      {
        mesh                            "track-lod3"
      }
    }
  }
}

endcap-prev
{
  mesh-length                           0.0001
  
  track-lod-tree
  {
    lod-distance                        128
    
    high-detail
    {
      mesh                              "endcap_prev"
    }
    
    low-detail
    {
    }
  }
}

endcap-next
{
  mesh-length                           0.0001
  
  track-lod-tree
  {
    lod-distance                        128
    
    high-detail
    {
      mesh                              "endcap_next"
    }
    
    low-detail
    {
    }
  }
}

Thats as bad as it gets for track with lod, terminator and initiator are now endcaps

For a simple spline this will do.

Code:
mesh-table
{
  default
  {
    mesh                                "default.im"
  }
  
  preview-mesh
  {
    mesh                                "default.im"
    auto-create                         1
  }
}

track
{
  mesh-length                           1.486
  adjust-cross-section-to-ground        0
  
  track-lod-tree
  {
    mesh                                "default"
  }
}

Try 2.8 with the invisible tag and see if that works? you can still upload at the moment, N3V seem to have forgotten about it's kill off date. there still 2.8 versions on todays downloads.
 
Last edited:
Back
Top