How to fix RRMODS SD60s to work in TS2MAC?

john2002

Active member
I need the EVWR SD60 For a session and it has this error - Mesh 'default' referenced in 'mesh-table/default-night' was not found within the mesh table.
How do i fix? I need Help.:(
 
Waiting is the best way to to get a decent answer. Besides, it IS Saturday after all, so that contributes to some reason the forums is quiet.
 
Sounds like you are missing the 'default-night.im' file as the mesh table is unable to find it. You might try redownloading the sd60 again.
 
This is the existing mesh-table of the config:
Code:
mesh-table
{
  body
  {
    mesh                                "sd60_body/sd60.lm"
    auto-create                         1
    animation-loop-speed                1
    
    effects
    {
      0
      {
        kind                            "attachment"
        att                             "a.fan0"
        default-mesh                    <kuid:138423:111030>
      }
      
      1
      {
        kind                            "attachment"
        att                             "a.fan1"
        default-mesh                    <kuid:138423:111030>
      }
      
      2
      {
        kind                            "attachment"
        att                             "a.fan2"
        default-mesh                    <kuid:138423:111030>
      }
    }
  }
  
  default-night
  {
    mesh                                "sd60_body/night.im"
    night-mesh-base                     "default"
  }
  
  shadow
  {
    mesh                                "sd60_shadow/sd60_shadow.im"
  }
}
Change it to the following (change marked in red):
Code:
mesh-table
{
  [COLOR=#ff0000]default[/COLOR]
  {
    mesh                                "sd60_body/sd60.lm"
    auto-create                         1
    animation-loop-speed                1
    
    effects
    {
      0
      {
        kind                            "attachment"
        att                             "a.fan0"
        default-mesh                    <kuid:138423:111030>
      }
      
      1
      {
        kind                            "attachment"
        att                             "a.fan1"
        default-mesh                    <kuid:138423:111030>
      }
      
      2
      {
        kind                            "attachment"
        att                             "a.fan2"
        default-mesh                    <kuid:138423:111030>
      }
    }
  }
  
  default-night
  {
    mesh                                "sd60_body/night.im"
    night-mesh-base                     "default"
  }
  
  shadow
  {
    mesh                                "sd60_shadow/sd60_shadow.im"
  }
}
Peter
 
Back
Top