Problems with Pikkabird class 37s & other content

alexl102

Learning... slowly!
I've downloaded the Smoothnose 37 reskin base for Pikkabird's 37s and corrected the thumbnail and horncover issues. However, I've now got an error with all my pikkabird 37s and also with a railfreight VAA van:

; <kuid:283805:37119> Validating <kuid:283805:37119>
! <kuid:283805:37119> VE48: This asset uses an obsolete trainz-build number. Trainz-build numbers below 3.5 are no longer supported.
! <kuid:283805:37119> VE62: Required container 'thumbnails' is missing.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE146: An asset must be specified for tag 'texture-kuid'.
! <kuid:283805:37119> VE109: The low-detail meshes total more than 500 polygons. This may have a negative impact on performance: 0: 11501, 1: 5262, 2: 2126
; <NULL> Performing asset precache
; <kuid:283805:37119> Loading asset <kuid:283805:37119>
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null
- <kuid:283805:37119> VE194: Tag 'texture-kuid' does not contain a valid kuid: null

Please can someone advise me on a fix for this?

Thanks!
 
The tag should identify a kuid for a corona. There appear to be two coronas in the kuid-list: a red corona <kuid:2512:4> and a disc <kuid:2512:3>. The location of the red coronas is obvious but I can only guess for the discs.

To fix it use this effect container as an example:

Code:
rearmarker_0      {
        kind                            "corona"
        att                             "a.redlight2"
        object-size                     0.08
        texture-kuid                    "null"
      }

It should be:

Code:
rearmarker_0      {
        kind                            "corona"
        att                             "a.redlight2"
        object-size                     0.08
        texture-kuid                    <kuid:2512:4>
      }
 
Either provide a kuid for the texture-kuid or delete the whole line(s) with texture-kuid <NULL>

Lights still work after deleting the Null lines.
 
Back
Top