Skip to content

Instantly share code, notes, and snippets.

@Stuyk
Created April 15, 2020 16:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stuyk/d134315df8ae55482d14c6c784aa6c08 to your computer and use it in GitHub Desktop.
Save Stuyk/d134315df8ae55482d14c6c784aa6c08 to your computer and use it in GitHub Desktop.
GTA:V Ped Head Overlays
const pedHeadOverlays = [
{
label: 'Facial Hair',
key: 'facialhair',
value: 0,
min: 0,
max: 28,
increment: 1,
id: 1,
colorType: 1
},
{
label: 'Facial Hair Opacity',
key: 'facialhairopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 1,
colorType: 1
},
{
label: 'Facial Hair Color',
key: 'facialhaircolor',
value: 0,
min: 0,
max: 78,
increment: 1,
id: 1,
colorType: 1
},
{
label: 'Facial Hair Color 2',
key: 'facialhaircolor2',
value: 0,
min: 0,
max: 78,
increment: 1,
id: 1,
colorType: 1
}
{
label: 'Eyebrows',
key: 'eyebrows',
value: 0,
min: 0,
max: 33,
increment: 1,
id: 2,
colorType: 1
},
{
label: 'Eyebrows Opacity',
key: 'eyebrowsopacity',
value: 1,
min: 0,
max: 1,
increment: 0.1,
id: 2,
colorType: 1
},
{
label: 'Eyebrows Color',
key: 'eyebrowscolor',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 2,
colorType: 1
},
{
label: 'Eyebrows Color 2',
key: 'eyebrowscolor2',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 2,
colorType: 1
},
{
label: 'Blemish',
key: 'blemish',
value: 0,
min: 0,
max: 23,
increment: 1,
id: 0
},
{
label: 'Blemish Opacity',
key: 'blemishopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 0
},
{
label: 'Age',
key: 'age',
value: 0,
min: 0,
max: 14,
increment: 1,
id: 3
},
{
label: 'Age Opacity',
key: 'ageopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 3
},
{
label: 'Complexion',
key: 'complexion',
value: 0,
min: 0,
max: 11,
increment: 1,
id: 6
},
{
label: 'Complexion Opacity',
key: 'complexionopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 6
},
{
label: 'Sun Damage',
key: 'sundamage',
value: 0,
min: 0,
max: 10,
increment: 1,
id: 7
}, // 56
{
label: 'Sun Damage Opacity',
key: 'sundamageopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 7
},
{
label: 'Freckles',
key: 'freckles',
value: 0,
min: 0,
max: 17,
increment: 1,
id: 9
}, // 62, 26
{
label: 'Freckles Opacity',
key: 'frecklesopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 9
},
{
label: 'Body Blemish',
key: 'bodyblemish',
value: 0,
min: 0,
max: 11,
increment: 1,
id: 11
},
{
label: 'Body Blemish Opacity',
key: 'bodyblemishopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 11
},
{
label: 'Makeup',
key: 'makeup',
value: 0,
min: 0,
max: 74,
increment: 1,
id: 4,
colorType: 2
},
{
label: 'Makeup Opacity',
key: 'makeupopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 4,
colorType: 2
},
{
label: 'Makeup Color',
key: 'makeupcolor',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 4,
colorType: 2
},
{
label: 'Makeup Color 2',
key: 'makeupcolor2',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 4,
colorType: 2
},
{
label: 'Blush',
key: 'blush',
value: 0,
min: 0,
max: 6,
increment: 1,
id: 5,
colorType: 2
},
{
label: 'Blush Opacity',
key: 'blushopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 5,
colorType: 2
},
{
label: 'Blush Color',
key: 'blushcolor',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 5,
colorType: 2
},
{
label: 'Lipstick',
key: 'lipstick',
value: 0,
min: 0,
max: 9,
increment: 1,
id: 8,
colorType: 2
},
{
label: 'Lipstick Opacity',
key: 'lipstickopacity',
value: 0,
min: 0,
max: 1,
increment: 0.1,
id: 8,
colorType: 2
},
{
label: 'Lipstick Color',
key: 'lipstickcolor',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 8,
colorType: 2
},
{
label: 'Lipstick Color 2',
key: 'lipstickcolor2',
value: 0,
min: 0,
max: 64,
increment: 1,
id: 8,
colorType: 2
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment