PedCols - user-grinch/ModelExtras GitHub Wiki

Available from ModelExtras v2.1+

๐Ÿงฌ VCS PedCols

This module enables randomized selection of pedestrian clothing and skin colors in VCS. Each material layer (Primary, Secondary, etc.) supports multiple RGB presets for dynamic variation.

๐ŸŽจ Material Colors

Layer RGB Values
Primary R: 0, G: 255, B: 60
Secondary R: 175, G: 0, B: 255
Tertiary R: 255, G: 255, B: 0
Quaternary R: 255, G: 0, B: 255

These are base reference colors. Runtime selections are randomized from the JSON pool below.

๐Ÿงพ JSON Configuration

"pedcols": {
    "primary": [
        [255, 0, 0],
        [0, 255, 0],
        [0, 0, 255]
    ],
    "secondary": [
        [255, 0, 0],
        [0, 255, 0],
        [0, 0, 255],
        [255, 255, 255]
    ],
    "tertiary": [
        [0, 0, 255],
        [192, 192, 192]
    ],
    "quaternary": [
        [255, 255, 0],
        [0, 255, 255]
    ]
}