appearance.set_face_shape
Overview
- Adjust face shape by named group (e.g. Nose, Jaw, Eye) or raw parameter index. action=list shows groups, action=get reads values, action=set changes them. Value range: -1.0 to 1.0.
| Field |
Value |
| Display |
Set Face Shape |
| Category |
appearance |
| Access |
ScriptCheat |
| Scope |
B2Authority |
| Tags |
Experimental |
| Aliases |
— |
Parameters
| Name |
Type |
Required |
Default |
Description |
| entity_id |
entityId |
no |
— |
Target entity ID (default: possessed) |
| action |
string |
no |
list |
list (default), get, or set |
| group |
string |
no |
— |
Gizmo group name (e.g. Nose, Jaw). Use action=list to see all. |
| index |
int |
no |
— |
Raw parameter index (alternative to group) |
| value |
float |
no |
— |
Shape value: -1.0 to 1.0 |
Usage
await inzoi.cli.execute('appearance.set_face_shape', {
entity_id: 0, // optional
action: 'list', // optional
group: '', // optional
index: 0, // optional
value: 0.0, // optional
});