Player::getFaceFeature: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "{{Incomplete Functions}}")
 
No edit summary
 
Line 1: Line 1:
{{Incomplete Functions}}
Gets the various freemode face features, e.g. nose length, chin shape. Scale ranges from -1.0 to 1.0.
Index can be 0 - 19.
{| class="wikitable"
 
! Index
! Face feature     
! Min             
! Max           
|-
 
| 0   
| Nose width       
| -1.0 narrow     
| 1.0 wide       
|-
 
| 1   
| Nose height     
| -1.0 top         
| 1.0 bottom     
|-
 
| 2   
| Nose length     
| -1.0 grand       
| 1.0 petite     
|-
 
| 3   
| Nose bridge     
| -1.0 round       
| 1.0 hollow     
|-
 
| 4   
| Nose tip         
| -1.0 upward     
| 1.0 downward   
|-
 
| 5   
| Nose bridge shift
| -1.0 to the right
| 1.0 to the left
|-
 
| 6   
| Brow height     
| -1.0 top         
| 1.0 bottom     
|-
 
| 7   
| Brow width       
| -1.0 inward     
| 1.0 outward   
|-
 
| 8   
| Cheekbone height 
| -1.0 top         
| 1.0 bottom     
|-
 
| 9   
| Cheekbone width 
| -1.0 narrow     
| 1.0 wide       
|-
 
| 10   
| Cheeks width     
| -1.0 wide       
| 1.0 narrow     
|-
 
| 11   
| Eyes             
| -1.0 opened     
| 1.0 closed     
|-
 
| 12   
| Lips             
| -1.0 wide       
| 1.0 narrow     
|-
 
| 13   
| Jaw width       
| -1.0 narrow     
| 1.0 wide       
|-
 
| 14   
| Jaw height       
| -1.0 top         
| 1.0 bottom     
|-
 
| 15   
| Chin length     
| -1.0 small       
| 1.0 long       
|-
 
| 16   
| Chin position   
| -1.0 inward     
| 1.0 outward   
|-
 
| 17   
| Chin width       
| -1.0 narrow     
| 1.0 grand     
|-
 
| 18   
| Chin shape       
| -1.0 simple chin 
| 1.0 double chin
|-
 
| 19   
| Neck width       
| -1.0 narrow     
| 1.0 wide       
|}
<br>
==Syntax==
<syntaxhighlight lang="javascript">player.getFaceFeature(index);</syntaxhighlight>
=== Required Arguments ===
*'''index:''' int
===Return value===
*'''Scale'''
==See also==
{{Player_function_c}}
 
[[Category:Player Appearance]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:Server-side Function]]

Latest revision as of 14:43, 10 February 2020

Gets the various freemode face features, e.g. nose length, chin shape. Scale ranges from -1.0 to 1.0. Index can be 0 - 19.

Index Face feature Min Max
0 Nose width -1.0 narrow 1.0 wide
1 Nose height -1.0 top 1.0 bottom
2 Nose length -1.0 grand 1.0 petite
3 Nose bridge -1.0 round 1.0 hollow
4 Nose tip -1.0 upward 1.0 downward
5 Nose bridge shift -1.0 to the right 1.0 to the left
6 Brow height -1.0 top 1.0 bottom
7 Brow width -1.0 inward 1.0 outward
8 Cheekbone height -1.0 top 1.0 bottom
9 Cheekbone width -1.0 narrow 1.0 wide
10 Cheeks width -1.0 wide 1.0 narrow
11 Eyes -1.0 opened 1.0 closed
12 Lips -1.0 wide 1.0 narrow
13 Jaw width -1.0 narrow 1.0 wide
14 Jaw height -1.0 top 1.0 bottom
15 Chin length -1.0 small 1.0 long
16 Chin position -1.0 inward 1.0 outward
17 Chin width -1.0 narrow 1.0 grand
18 Chin shape -1.0 simple chin 1.0 double chin
19 Neck width -1.0 narrow 1.0 wide


Syntax

player.getFaceFeature(index);

Required Arguments

  • index: int

Return value

  • Scale

See also