-
-
Notifications
You must be signed in to change notification settings - Fork 3
PedCols
Grinch_ edited this page Jan 25, 2026
·
7 revisions
Available from ModelExtras v2.1+
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.
| 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.
A JSONC file contains the following fields:
-
"pedcols"– The main object.-
"colors"– A list of RGB color values. -
"variations"– A list of color combinations using indices from the color list.
-
{ "pedcols": { "colors": [ { "red": 255, "green": 0, "blue": 0 }, // Index 0 { "red": 0, "green": 255, "blue": 0 }, // Index 1 { "red": 0, "green": 0, "blue": 255 }, // Index 2 { "red": 255, "green": 255, "blue": 255 } // Index 3 ], "variations": [ { "primary": 0, "secondary": 1, "tertiary": 2, "quaternary": 3 }, { "primary": 1, "secondary": 1, "tertiary": 3, "quaternary": 0 } ] } }