-
-
Notifications
You must be signed in to change notification settings - Fork 2
PedCols
Grinch_ edited this page Sep 5, 2025
·
2 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.
"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]
]
}