同步进度
29
add/index.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
require '../tools/modelList.php';
|
||||
require '../tools/modelTextures.php';
|
||||
|
||||
$modelList = new modelList();
|
||||
$modelTextures = new modelTextures();
|
||||
|
||||
$modelList = $modelList->get_list()['models'];
|
||||
|
||||
foreach ($modelList as $modelName) {
|
||||
if (file_exists('../model/'.$modelName.'/textures.cache')) {
|
||||
|
||||
$textures = $texturesNew = array();
|
||||
foreach ($modelTextures->get_list($modelName)['textures'] as $v) $textures[] = json_encode($v, JSON_UNESCAPED_SLASHES);
|
||||
foreach ($modelTextures->get_textures($modelName) as $v) $texturesNew[] = json_encode($v, JSON_UNESCAPED_SLASHES);
|
||||
|
||||
if ($textures == NULL) continue; elseif (empty(array_diff($texturesNew, $textures))) {
|
||||
echo '<p>'.$modelName.' / textures.cache / No Update.</p>';
|
||||
} else {
|
||||
foreach (array_values(array_unique(array_merge($textures, $texturesNew))) as $v) $texturesMerge[] = json_decode($v, 1);
|
||||
file_put_contents('../model/'.$modelName.'/textures.cache', json_encode($texturesMerge, JSON_UNESCAPED_SLASHES));
|
||||
echo '<p>'.$modelName.' / textures.cache / Updated.</p>';
|
||||
}
|
||||
|
||||
}
|
||||
elseif (is_array($modelName)) continue;
|
||||
elseif ($modelTextures->get_list($modelName)) echo '<p>'.$modelName.' / textures.cache / Created.</p>';
|
||||
}
|
52
get/index.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
isset($_GET['id']) ? $id = $_GET['id'] : exit('error');
|
||||
|
||||
require '../tools/modelList.php';
|
||||
require '../tools/modelTextures.php';
|
||||
|
||||
$modelList = new modelList();
|
||||
$modelTextures = new modelTextures();
|
||||
|
||||
$id = explode('-', $id);
|
||||
$modelId = (int)$id[0];
|
||||
$modelTexturesId = isset($id[1]) ? (int)$id[1] : 0;
|
||||
|
||||
$modelName = $modelList->id_to_name($modelId);
|
||||
|
||||
if (is_array($modelName)) {
|
||||
$modelName = $modelTexturesId > 0 ? $modelName[$modelTexturesId-1] : $modelName[0];
|
||||
$json = json_decode(file_get_contents('../model/'.$modelName.'/index.json'), 1);
|
||||
} else {
|
||||
$json = json_decode(file_get_contents('../model/'.$modelName.'/index.json'), 1);
|
||||
if ($modelTexturesId > 0) {
|
||||
$modelTexturesName = $modelTextures->get_name($modelName, $modelTexturesId);
|
||||
if (isset($modelTexturesName)) $json['textures'] = is_array($modelTexturesName) ? $modelTexturesName : array($modelTexturesName);
|
||||
}
|
||||
}
|
||||
|
||||
$textures = json_encode($json['textures']);
|
||||
$textures = str_replace('texture', '../model/'.$modelName.'/texture', $textures);
|
||||
$textures = json_decode($textures, 1);
|
||||
$json['textures'] = $textures;
|
||||
|
||||
$json['model'] = '../model/'.$modelName.'/'.$json['model'];
|
||||
if (isset($json['pose'])) $json['pose'] = '../model/'.$modelName.'/'.$json['pose'];
|
||||
if (isset($json['physics'])) $json['physics'] = '../model/'.$modelName.'/'.$json['physics'];
|
||||
|
||||
if (isset($json['motions'])) {
|
||||
$motions = json_encode($json['motions']);
|
||||
$motions = str_replace('sounds', '../model/'.$modelName.'/sounds', $motions);
|
||||
$motions = str_replace('motions', '../model/'.$modelName.'/motions', $motions);
|
||||
$motions = json_decode($motions, 1);
|
||||
$json['motions'] = $motions;
|
||||
}
|
||||
|
||||
if (isset($json['expressions'])) {
|
||||
$expressions = json_encode($json['expressions']);
|
||||
$expressions = str_replace('expressions', '../model/'.$modelName.'/expressions', $expressions);
|
||||
$expressions = json_decode($expressions, 1);
|
||||
$json['expressions'] = $expressions;
|
||||
}
|
||||
|
||||
header("Content-type: application/json");
|
||||
echo json_encode($json, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);
|
30
model/HyperdimensionNeptunia/blanc_classic/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.6,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_classic/model.moc
Normal file
149
model/HyperdimensionNeptunia/blanc_classic/physics.json
Normal file
@ -0,0 +1,149 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.34,
|
||||
"regist":0.5,
|
||||
"mass":0.2
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"body_string",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_STRING",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"arm_far",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.05
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_FAR",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_classic/textures.1024/00.png
Normal file
After Width: | Height: | Size: 635 KiB |
BIN
model/HyperdimensionNeptunia/blanc_classic/textures.1024/01.png
Normal file
After Width: | Height: | Size: 582 KiB |
BIN
model/HyperdimensionNeptunia/blanc_classic/textures.1024/02.png
Normal file
After Width: | Height: | Size: 769 KiB |
BIN
model/HyperdimensionNeptunia/blanc_classic/textures.1024/03.png
Normal file
After Width: | Height: | Size: 612 KiB |
30
model/HyperdimensionNeptunia/blanc_normal/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.6,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_normal/model.moc
Normal file
149
model/HyperdimensionNeptunia/blanc_normal/physics.json
Normal file
@ -0,0 +1,149 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.34,
|
||||
"regist":0.5,
|
||||
"mass":0.2
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"body_string",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_STRING",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"arm_far",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.05
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_FAR",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_normal/textures.1024/00.png
Normal file
After Width: | Height: | Size: 635 KiB |
BIN
model/HyperdimensionNeptunia/blanc_normal/textures.1024/01.png
Normal file
After Width: | Height: | Size: 582 KiB |
BIN
model/HyperdimensionNeptunia/blanc_normal/textures.1024/02.png
Normal file
After Width: | Height: | Size: 178 KiB |
BIN
model/HyperdimensionNeptunia/blanc_normal/textures.1024/03.png
Normal file
After Width: | Height: | Size: 55 KiB |
29
model/HyperdimensionNeptunia/blanc_swimwear/index.json
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.45,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_swimwear/model.moc
Normal file
149
model/HyperdimensionNeptunia/blanc_swimwear/physics.json
Normal file
@ -0,0 +1,149 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.34,
|
||||
"regist":0.5,
|
||||
"mass":0.2
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"body_string",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.7,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_STRING",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"arm_far",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.05
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_FAR",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/blanc_swimwear/textures.1024/00.png
Normal file
After Width: | Height: | Size: 635 KiB |
BIN
model/HyperdimensionNeptunia/blanc_swimwear/textures.1024/01.png
Normal file
After Width: | Height: | Size: 583 KiB |
BIN
model/HyperdimensionNeptunia/blanc_swimwear/textures.1024/02.png
Normal file
After Width: | Height: | Size: 776 KiB |
33
model/HyperdimensionNeptunia/general/mtn/idle_00.mtn
Normal file
@ -0,0 +1,33 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_BROW_L_ANGLE=0
|
||||
PARAM_ANGLE_Z=0,0.005,0.021,0.05,0.08,0.12,0.18,0.24,0.31,0.39,0.48,0.57,0.68,0.79,0.91,1.03,1.17,1.31,1.46,1.62,1.78,1.95,2.13,2.31,2.5,2.7,2.9,3.11,3.32,3.54,3.77,4,4.24,4.49,4.74,5,5.27,5.54,5.8,6.06,6.3,6.54,6.77,6.99,7.21,7.42,7.62,7.82,8.01,8.19,8.37,8.54,8.7,8.86,9.01,9.15,9.3,9.43,9.56,9.68,9.79,9.9,10.01,10.11,10.2,10.29,10.37,10.45,10.52,10.59,10.65,10.71,10.76,10.81,10.85,10.88,10.91,10.94,10.96,10.979,10.991,10.998,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10.95,10.82,10.61,10.33,9.99,9.59,9.14,8.64,8.12,7.54,6.95,6.34,5.71,5.06,4.41,3.75,3.11,2.47,1.85,1.24,0.65,0.09,-0.43,-0.93,-1.37,-1.78,-2.13,-2.43,-2.67,-2.85,-2.96,-3,-3,-3,-3,-3,-3,-3,-2.94,-2.76,-2.49,-2.12,-1.69,-1.21,-0.68,-0.13,0.43,0.99,1.53,2.04,2.52,2.94,3.3,3.6,3.82,3.95,4,3.96,3.86,3.71,3.5,3.25,2.96,2.64,2.29,1.93,1.54,1.15,0.75,0.35,-0.05,-0.43,-0.81,-1.17,-1.51,-1.83,-2.11,-2.37,-2.58,-2.76,-2.89,-2.97,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.98,-2.91,-2.79,-2.64,-2.46,-2.25,-2,-1.74,-1.45,-1.16,-0.84,-0.52,-0.2,0.12,0.44,0.76,1.07,1.36,1.64,1.9,2.14,2.35,2.54,2.7,2.83,2.92,2.98,3,2.993,2.973,2.94,2.9,2.84,2.78,2.7,2.62,2.53,2.44,2.33,2.23,2.11,2,1.88,1.76,1.64,1.52,1.39,1.27,1.15,1.03,0.92,0.81,0.7,0.6,0.51,0.42,0.34,0.26,0.2,0.14,0.09,0.05,0.02,0.006,0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0.003,0.014,0.032,0.06,0.09,0.13,0.18,0.24,0.31,0.38,0.46,0.56,0.66,0.78,0.9,1.03,1.18,1.33,1.5,1.68,1.87,2.07,2.28,2.51,2.75,3,3.28,3.55,3.82,4.09,4.34,4.6,4.85,5.09,5.33,5.56,5.78,6,6.22,6.43,6.64,6.83,7.02,7.21,7.4,7.57,7.74,7.91,8.07,8.22,8.37,8.51,8.64,8.77,8.89,9.01,9.12,9.23,9.32,9.41,9.5,9.58,9.65,9.72,9.77,9.83,9.87,9.91,9.94,9.97,9.986,9.996,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9.984,9.94,9.86,9.76,9.64,9.5,9.33,9.16,8.97,8.77,8.56,8.35,8.13,7.92,7.71,7.5,7.29,7.09,6.91,6.73,6.57,6.43,6.31,6.2,6.11,6.05,6.01,6,6,6,6,6,6,6,6,6,6,5.987,5.95,5.89,5.8,5.7,5.58,5.45,5.31,5.15,4.99,4.83,4.66,4.49,4.33,4.16,4,3.81,3.64,3.47,3.32,3.18,3.05,2.93,2.82,2.72,2.62,2.54,2.46,2.39,2.33,2.27,2.22,2.17,2.13,2.1,2.07,2.05,2.031,2.017,2.008,2.002,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2.009,2.03,2.07,2.13,2.19,2.26,2.34,2.42,2.5,2.58,2.66,2.74,2.81,2.87,2.93,2.97,2.99,3,2.995,2.98,2.96,2.92,2.88,2.83,2.78,2.72,2.65,2.57,2.49,2.41,2.32,2.22,2.13,2.03,1.92,1.82,1.71,1.61,1.5,1.39,1.29,1.18,1.08,0.97,0.87,0.78,0.68,0.59,0.51,0.43,0.35,0.28,0.22,0.17,0.12,0.08,0.04,0.02,0.005,0
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BODY_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,-0.008,-0.03,-0.06,-0.11,-0.17,-0.23,-0.3,-0.38,-0.47,-0.56,-0.65,-0.75,-0.85,-0.95,-1.05,-1.16,-1.26,-1.36,-1.45,-1.55,-1.64,-1.72,-1.8,-1.87,-1.94,-2,-2.06,-2.12,-2.17,-2.22,-2.27,-2.32,-2.36,-2.4,-2.44,-2.48,-2.52,-2.55,-2.59,-2.62,-2.65,-2.68,-2.7,-2.73,-2.75,-2.78,-2.8,-2.816,-2.835,-2.851,-2.867,-2.882,-2.896,-2.908,-2.92,-2.93,-2.94,-2.949,-2.957,-2.964,-2.97,-2.975,-2.98,-2.985,-2.988,-2.991,-2.994,-2.996,-2.997,-2.999,-2.999,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.992,-2.97,-2.93,-2.88,-2.82,-2.75,-2.67,-2.58,-2.48,-2.39,-2.28,-2.17,-2.07,-1.96,-1.85,-1.75,-1.64,-1.55,-1.45,-1.37,-1.29,-1.22,-1.15,-1.1,-1.06,-1.03,-1.006,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1.01,-1.04,-1.09,-1.15,-1.23,-1.33,-1.45,-1.57,-1.71,-1.87,-2.03,-2.21,-2.4,-2.59,-2.79,-3,-3.25,-3.49,-3.71,-3.92,-4.12,-4.31,-4.48,-4.65,-4.8,-4.94,-5.08,-5.2,-5.32,-5.42,-5.51,-5.6,-5.68,-5.75,-5.81,-5.86,-5.9,-5.94,-5.96,-5.984,-5.996,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.98,-5.92,-5.83,-5.72,-5.57,-5.4,-5.22,-5.03,-4.82,-4.61,-4.39,-4.18,-3.97,-3.78,-3.6,-3.43,-3.28,-3.17,-3.08,-3.02,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.996,-2.985,-2.967,-2.94,-2.91,-2.87,-2.83,-2.78,-2.72,-2.66,-2.6,-2.52,-2.45,-2.37,-2.28,-2.19,-2.1,-2,-1.9,-1.81,-1.71,-1.62,-1.54,-1.45,-1.37,-1.29,-1.21,-1.14,-1.06,-0.99,-0.93,-0.86,-0.8,-0.74,-0.68,-0.63,-0.58,-0.53,-0.48,-0.43,-0.39,-0.35,-0.31,-0.27,-0.24,-0.21,-0.18,-0.15,-0.13,-0.11,-0.085,-0.067,-0.051,-0.038,-0.026,-0.017,-0.009,-0.004,-0.001,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_ANGLE_Y=0,-0,-0,-0.002,-0.004,-0.008,-0.015,-0.024,-0.037,-0.053,-0.073,-0.1,-0.13,-0.16,-0.2,-0.25,-0.3,-0.36,-0.42,-0.5,-0.58,-0.67,-0.77,-0.87,-0.99,-1.12,-1.25,-1.4,-1.56,-1.72,-1.91,-2.1,-2.3,-2.52,-2.75,-3,-3.27,-3.55,-3.83,-4.12,-4.4,-4.69,-4.98,-5.27,-5.57,-5.86,-6.15,-6.45,-6.74,-7.03,-7.32,-7.6,-7.88,-8.16,-8.44,-8.71,-8.98,-9.24,-9.5,-9.74,-9.99,-10.22,-10.46,-10.68,-10.9,-11.11,-11.3,-11.5,-11.68,-11.85,-12.01,-12.16,-12.3,-12.43,-12.54,-12.64,-12.74,-12.82,-12.88,-12.93,-12.97,-12.99,-13,-13,-13,-13,-13,-13,-13,-13,-13,-13,-13,-13,-13,-13,-12.96,-12.84,-12.64,-12.37,-12.04,-11.65,-11.21,-10.73,-10.21,-9.65,-9.06,-8.46,-7.84,-7.21,-6.58,-5.95,-5.33,-4.71,-4.11,-3.54,-2.99,-2.48,-2,-1.56,-1.17,-0.82,-0.54,-0.31,-0.14,-0.04,0,0,0,0,0,0,0,0,-0.09,-0.34,-0.74,-1.26,-1.87,-2.56,-3.32,-4.1,-4.9,-5.7,-6.47,-7.2,-7.88,-8.48,-9,-9.43,-9.74,-9.93,-10,-9.93,-9.75,-9.46,-9.07,-8.61,-8.07,-7.47,-6.83,-6.15,-5.43,-4.71,-3.97,-3.21,-2.48,-1.77,-1.06,-0.4,0.24,0.82,1.35,1.82,2.23,2.55,2.8,2.95,3,2.983,2.93,2.85,2.74,2.59,2.43,2.23,2.02,1.78,1.53,1.25,0.97,0.66,0.35,0.03,-0.3,-0.64,-0.98,-1.33,-1.67,-2.02,-2.36,-2.7,-3.03,-3.35,-3.66,-3.97,-4.25,-4.53,-4.78,-5.02,-5.23,-5.43,-5.59,-5.74,-5.85,-5.93,-5.98,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6.04,-6.16,-6.34,-6.59,-6.9,-7.26,-7.66,-8.1,-8.58,-9.07,-9.6,-10.13,-10.66,-11.21,-11.74,-12.26,-12.78,-13.27,-13.73,-14.17,-14.57,-14.92,-15.24,-15.5,-15.71,-15.87,-15.97,-16,-15.96,-15.86,-15.68,-15.45,-15.16,-14.82,-14.42,-13.99,-13.51,-12.99,-12.45,-11.87,-11.28,-10.66,-10.03,-9.39,-8.74,-8.08,-7.43,-6.79,-6.14,-5.52,-4.91,-4.32,-3.75,-3.21,-2.71,-2.23,-1.79,-1.39,-1.04,-0.73,-0.48,-0.27,-0.12,-0.03,0
|
||||
PARAM_BROW_R_Y=0
|
||||
PARAM_ANGLE_X=0,0.019,0.08,0.17,0.29,0.44,0.63,0.83,1.06,1.31,1.59,1.88,2.18,2.5,2.84,3.18,3.53,3.9,4.27,4.64,5.01,5.39,5.77,6.14,6.52,6.88,7.24,7.6,7.94,8.28,8.6,8.91,9.21,9.49,9.75,10,10.24,10.48,10.71,10.92,11.13,11.32,11.51,11.68,11.85,12.01,12.16,12.3,12.44,12.56,12.68,12.8,12.9,13,13.1,13.18,13.26,13.34,13.41,13.47,13.53,13.59,13.64,13.69,13.73,13.77,13.8,13.83,13.86,13.89,13.91,13.925,13.941,13.955,13.966,13.976,13.983,13.989,13.993,13.997,13.999,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13.95,13.82,13.61,13.32,12.96,12.55,12.08,11.55,11,10.39,9.76,9.11,8.45,7.77,7.08,6.41,5.73,5.07,4.43,3.81,3.22,2.67,2.15,1.67,1.25,0.89,0.58,0.33,0.15,0.04,0,0,0,0,0,0,0,0,0.003,0.011,0.02,0.03,0.039,0.043,0.041,0.032,0.013,-0.02,-0.06,-0.12,-0.19,-0.28,-0.38,-0.51,-0.65,-0.82,-1,-1.28,-1.66,-2.11,-2.64,-3.22,-3.86,-4.54,-5.24,-5.97,-6.72,-7.47,-8.23,-8.98,-9.71,-10.42,-11.11,-11.76,-12.37,-12.94,-13.44,-13.89,-14.27,-14.58,-14.81,-14.95,-15,-14.989,-14.95,-14.9,-14.82,-14.73,-14.62,-14.49,-14.35,-14.19,-14.02,-13.84,-13.65,-13.44,-13.24,-13.02,-12.8,-12.57,-12.35,-12.11,-11.89,-11.65,-11.43,-11.2,-10.98,-10.76,-10.56,-10.35,-10.16,-9.98,-9.81,-9.65,-9.51,-9.38,-9.27,-9.18,-9.1,-9.05,-9.01,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-8.993,-8.973,-8.94,-8.9,-8.84,-8.77,-8.69,-8.61,-8.51,-8.4,-8.28,-8.16,-8.02,-7.88,-7.74,-7.58,-7.42,-7.25,-7.08,-6.9,-6.72,-6.53,-6.35,-6.15,-5.95,-5.76,-5.55,-5.35,-5.14,-4.94,-4.73,-4.53,-4.32,-4.11,-3.91,-3.7,-3.5,-3.3,-3.1,-2.91,-2.71,-2.52,-2.34,-2.16,-1.98,-1.81,-1.65,-1.49,-1.33,-1.19,-1.05,-0.91,-0.78,-0.67,-0.56,-0.46,-0.36,-0.28,-0.21,-0.15,-0.09,-0.05,-0.02,-0.006,0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_MOUTH_FORM=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.017,0.037,0.06,0.09,0.13,0.17,0.2,0.24,0.29,0.32,0.36,0.39,0.42,0.45,0.47,0.487,0.497,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.497,0.488,0.473,0.455,0.43,0.41,0.38,0.35,0.32,0.29,0.25,0.22,0.19,0.16,0.13,0.1,0.08,0.06,0.037,0.021,0.01,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_BUST_Y=0
|
||||
PARAM_EYE_FORM=0
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_BROW_L_FORM=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_L_Y=0
|
||||
PARAM_BROW_R_ANGLE=0
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_ARM_R=0
|
||||
PARAM_BROW_R_FORM=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_TERE=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_EYE_BALL_X=0,-0,-0.001,-0.003,-0.005,-0.008,-0.011,-0.015,-0.019,-0.024,-0.03,-0.036,-0.042,-0.048,-0.056,-0.063,-0.071,-0.079,-0.087,-0.096,-0.105,-0.114,-0.123,-0.133,-0.143,-0.153,-0.163,-0.173,-0.183,-0.194,-0.204,-0.215,-0.225,-0.236,-0.246,-0.257,-0.267,-0.277,-0.287,-0.297,-0.307,-0.317,-0.326,-0.335,-0.344,-0.353,-0.361,-0.369,-0.377,-0.384,-0.392,-0.398,-0.404,-0.41,-0.416,-0.421,-0.425,-0.429,-0.432,-0.435,-0.437,-0.439,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.44,-0.437,-0.43,-0.418,-0.402,-0.382,-0.36,-0.33,-0.3,-0.27,-0.24,-0.21,-0.17,-0.14,-0.1,-0.07,-0.03,0,0.04,0.07,0.11,0.14,0.17,0.2,0.22,0.24,0.258,0.273,0.287,0.298,0.308,0.316,0.323,0.328,0.332,0.335,0.338,0.339,0.34,0.34,0.29,0.15,-0.02,-0.19,-0.33,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.379,-0.378,-0.375,-0.371,-0.365,-0.359,-0.351,-0.341,-0.331,-0.319,-0.305,-0.291,-0.274,-0.256,-0.237,-0.216,-0.19,-0.17,-0.14,-0.11,-0.08,-0.05,-0.02,0.06,0.14,0.21,0.26,0.28,0.28,0.277,0.274,0.27,0.265,0.259,0.252,0.245,0.236,0.227,0.218,0.208,0.197,0.187,0.176,0.164,0.153,0.141,0.13,0.119,0.107,0.097,0.086,0.076,0.066,0.056,0.047,0.039,0.031,0.024,0.018,0.013,0.008,0.005,0.002,0.001,0
|
||||
PARAM_EYE_BALL_Y=0,0,0.002,0.004,0.007,0.011,0.016,0.022,0.028,0.035,0.043,0.051,0.06,0.069,0.079,0.09,0.101,0.113,0.125,0.137,0.15,0.163,0.177,0.191,0.205,0.219,0.233,0.248,0.263,0.278,0.292,0.308,0.322,0.338,0.352,0.367,0.382,0.397,0.411,0.425,0.439,0.453,0.467,0.48,0.493,0.505,0.517,0.529,0.54,0.551,0.561,0.57,0.579,0.587,0.595,0.602,0.608,0.614,0.619,0.623,0.626,0.628,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.63,0.628,0.624,0.616,0.606,0.594,0.58,0.563,0.545,0.525,0.5,0.48,0.46,0.44,0.41,0.39,0.36,0.34,0.31,0.29,0.26,0.24,0.22,0.195,0.178,0.162,0.148,0.136,0.125,0.116,0.108,0.101,0.096,0.091,0.087,0.085,0.082,0.081,0.08,0.08,0.096,0.13,0.19,0.24,0.27,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.29,0.292,0.296,0.303,0.313,0.324,0.337,0.351,0.365,0.381,0.397,0.413,0.429,0.445,0.46,0.475,0.488,0.501,0.512,0.521,0.529,0.535,0.539,0.54,0.54,0.54,0.54,0.54,0.54,0.539,0.535,0.529,0.521,0.512,0.5,0.487,0.472,0.456,0.438,0.42,0.401,0.381,0.36,0.34,0.32,0.29,0.27,0.25,0.23,0.21,0.19,0.17,0.146,0.127,0.108,0.091,0.075,0.06,0.047,0.035,0.025,0.016,0.009,0.004,0.001,0
|
33
model/HyperdimensionNeptunia/general/mtn/idle_01.mtn
Normal file
@ -0,0 +1,33 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_BROW_L_ANGLE=0
|
||||
PARAM_ANGLE_Z=0,-0.08,-0.29,-0.62,-1.05,-1.54,-2.08,-2.64,-3.21,-3.77,-4.3,-4.77,-5.19,-5.53,-5.79,-5.95,-6,-5.93,-5.74,-5.43,-5.02,-4.53,-3.94,-3.3,-2.59,-1.84,-1.05,-0.25,0.57,1.38,2.17,2.94,3.68,4.37,5,5.61,6.18,6.69,7.14,7.55,7.91,8.23,8.52,8.77,8.99,9.19,9.35,9.49,9.62,9.71,9.79,9.86,9.91,9.95,9.97,9.989,9.997,10,9.97,9.89,9.77,9.59,9.37,9.12,8.82,8.48,8.12,7.72,7.29,6.84,6.37,5.87,5.36,4.83,4.29,3.75,3.19,2.63,2.07,1.51,0.95,0.4,-0.14,-0.68,-1.2,-1.7,-2.2,-2.67,-3.11,-3.54,-3.93,-4.3,-4.64,-4.94,-5.21,-5.44,-5.64,-5.79,-5.91,-5.98,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.98,-5.92,-5.83,-5.7,-5.54,-5.35,-5.13,-4.89,-4.62,-4.33,-4.02,-3.69,-3.35,-3,-2.63,-2.25,-1.86,-1.46,-1.07,-0.66,-0.25,0.15,0.56,0.96,1.36,1.75,2.14,2.51,2.88,3.23,3.56,3.89,4.2,4.48,4.75,5,5.22,5.42,5.59,5.73,5.85,5.93,5.98,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6.02,6.09,6.21,6.36,6.54,6.75,7,7.26,7.55,7.84,8.16,8.48,8.8,9.12,9.44,9.76,10.07,10.36,10.64,10.9,11.14,11.35,11.54,11.7,11.83,11.92,11.98,12,11.982,11.93,11.84,11.73,11.58,11.41,11.2,10.97,10.72,10.44,10.15,9.83,9.49,9.13,8.76,8.38,7.97,7.56,7.13,6.69,6.24,5.79,5.32,4.86,4.38,3.9,3.42,2.94,2.45,1.97,1.49,1.01,0.53,0.06,-0.41,-0.86,-1.31,-1.76,-2.19,-2.61,-3.02,-3.42,-3.8,-4.17,-4.52,-4.85,-5.17,-5.47,-5.75,-6,-6.24,-6.47,-6.69,-6.89,-7.09,-7.27,-7.43,-7.59,-7.74,-7.88,-8,-8.12,-8.23,-8.33,-8.42,-8.5,-8.58,-8.65,-8.71,-8.76,-8.81,-8.85,-8.89,-8.92,-8.95,-8.97,-8.985,-8.999,-9.009,-9.017,-9.021,-9.024,-9.024,-9.023,-9.02,-9.017,-9.013,-9.01,-9.006,-9.003,-9.001,-9,-9,-9
|
||||
PARAM_BODY_ANGLE_X=0,-0.04,-0.14,-0.31,-0.52,-0.77,-1.04,-1.32,-1.61,-1.88,-2.15,-2.39,-2.6,-2.77,-2.89,-2.97,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.992,-2.97,-2.93,-2.88,-2.82,-2.75,-2.66,-2.57,-2.47,-2.37,-2.26,-2.14,-2.02,-1.9,-1.77,-1.64,-1.52,-1.39,-1.26,-1.14,-1.02,-0.9,-0.78,-0.67,-0.57,-0.47,-0.38,-0.3,-0.22,-0.16,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.03,0.07,0.12,0.18,0.25,0.34,0.44,0.54,0.65,0.78,0.9,1.04,1.18,1.32,1.47,1.62,1.77,1.92,2.08,2.23,2.38,2.53,2.68,2.82,2.96,3.1,3.22,3.35,3.46,3.56,3.66,3.75,3.82,3.88,3.93,3.97,3.99,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4.007,4.026,4.06,4.1,4.16,4.23,4.31,4.4,4.5,4.61,4.73,4.86,5,5.15,5.31,5.47,5.64,5.82,6,6.22,6.42,6.61,6.78,6.94,7.09,7.22,7.34,7.45,7.55,7.64,7.71,7.78,7.84,7.89,7.93,7.96,7.98,7.996,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7.981,7.93,7.84,7.72,7.57,7.39,7.19,6.97,6.72,6.46,6.18,5.9,5.6,5.29,4.98,4.66,4.34,4.02,3.71,3.4,3.1,2.82,2.54,2.28,2.03,1.81,1.61,1.43,1.28,1.16,1.07,1.02,1,1,1
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BODY_ANGLE_Z=0,0.011,0.04,0.09,0.16,0.25,0.35,0.46,0.59,0.73,0.88,1.03,1.19,1.36,1.54,1.71,1.89,2.07,2.24,2.42,2.59,2.76,2.92,3.07,3.22,3.35,3.48,3.59,3.7,3.78,3.86,3.92,3.96,3.99,4,3.994,3.975,3.95,3.91,3.86,3.81,3.76,3.7,3.64,3.57,3.51,3.44,3.38,3.32,3.26,3.21,3.16,3.11,3.07,3.04,3.02,3.005,3,3,3,3,3,3,3,3,3,2.992,2.97,2.93,2.88,2.82,2.75,2.66,2.57,2.47,2.37,2.26,2.14,2.02,1.9,1.77,1.64,1.52,1.39,1.26,1.14,1.02,0.9,0.78,0.67,0.57,0.47,0.38,0.3,0.22,0.16,0.1,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.004,-0.015,-0.034,-0.06,-0.09,-0.13,-0.17,-0.22,-0.27,-0.33,-0.39,-0.45,-0.52,-0.59,-0.66,-0.73,-0.81,-0.88,-0.96,-1.04,-1.12,-1.19,-1.27,-1.34,-1.41,-1.48,-1.55,-1.61,-1.67,-1.73,-1.78,-1.83,-1.87,-1.91,-1.94,-1.97,-1.985,-1.996,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2.018,-2.07,-2.15,-2.25,-2.37,-2.51,-2.66,-2.82,-2.98,-3.14,-3.29,-3.44,-3.58,-3.7,-3.8,-3.89,-3.95,-3.99,-4,-3.983,-3.93,-3.86,-3.76,-3.65,-3.52,-3.38,-3.24,-3.09,-2.94,-2.8,-2.66,-2.52,-2.4,-2.29,-2.19,-2.11,-2.05,-2.01,-2,-2.01,-2.04,-2.08,-2.15,-2.22,-2.31,-2.41,-2.53,-2.65,-2.78,-2.91,-3.06,-3.2,-3.35,-3.5,-3.65,-3.8,-3.94,-4.09,-4.22,-4.35,-4.47,-4.59,-4.69,-4.78,-4.85,-4.92,-4.96,-4.99,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-4.987,-4.95,-4.88,-4.8,-4.69,-4.57,-4.42,-4.26,-4.09,-3.9,-3.7,-3.5,-3.28,-3.06,-2.84,-2.61,-2.39,-2.16,-1.94,-1.72,-1.5,-1.3,-1.1,-0.91,-0.74,-0.58,-0.43,-0.31,-0.2,-0.12,-0.05,-0.01,0,0,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_ANGLE_Y=0,-0.08,-0.29,-0.62,-1.05,-1.54,-2.08,-2.64,-3.21,-3.77,-4.3,-4.77,-5.19,-5.53,-5.79,-5.95,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.99,-5.96,-5.91,-5.85,-5.76,-5.67,-5.56,-5.43,-5.29,-5.14,-4.98,-4.81,-4.64,-4.45,-4.26,-4.06,-3.86,-3.65,-3.45,-3.24,-3.03,-2.82,-2.61,-2.4,-2.2,-1.99,-1.8,-1.61,-1.43,-1.25,-1.08,-0.92,-0.78,-0.64,-0.51,-0.4,-0.3,-0.21,-0.14,-0.08,-0.03,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.08,0.17,0.3,0.45,0.63,0.83,1.05,1.29,1.53,1.8,2.06,2.33,2.6,2.87,3.13,3.39,3.63,3.87,4.08,4.28,4.46,4.62,4.75,4.86,4.93,4.98,5,4.9,4.63,4.23,3.69,3.07,2.37,1.61,0.83,0.01,-0.81,-1.61,-2.38,-3.12,-3.8,-4.42,-4.96,-5.39,-5.72,-5.93,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.99,-5.96,-5.91,-5.85,-5.76,-5.67,-5.56,-5.43,-5.29,-5.14,-4.98,-4.81,-4.63,-4.44,-4.25,-4.05,-3.85,-3.64,-3.43,-3.22,-3,-2.78,-2.57,-2.36,-2.15,-1.95,-1.75,-1.56,-1.37,-1.19,-1.02,-0.86,-0.71,-0.57,-0.44,-0.33,-0.24,-0.15,-0.09,-0.04,-0.01,0,0,0
|
||||
PARAM_BROW_R_Y=0
|
||||
PARAM_ANGLE_X=0,-0.05,-0.19,-0.41,-0.7,-1.02,-1.39,-1.76,-2.14,-2.51,-2.86,-3.18,-3.46,-3.69,-3.86,-3.96,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.993,-3.973,-3.94,-3.9,-3.84,-3.78,-3.7,-3.62,-3.53,-3.43,-3.32,-3.21,-3.09,-2.97,-2.84,-2.71,-2.57,-2.44,-2.3,-2.16,-2.02,-1.88,-1.74,-1.6,-1.46,-1.33,-1.2,-1.07,-0.95,-0.83,-0.72,-0.62,-0.52,-0.43,-0.34,-0.27,-0.2,-0.14,-0.09,-0.05,-0.02,-0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.07,0.16,0.28,0.42,0.6,0.81,1.04,1.29,1.57,1.87,2.19,2.53,2.88,3.25,3.63,4.02,4.43,4.85,5.26,5.69,6.13,6.56,7,7.44,7.87,8.31,8.74,9.15,9.57,9.98,10.37,10.75,11.12,11.47,11.81,12.13,12.43,12.71,12.96,13.19,13.4,13.58,13.72,13.84,13.93,13.98,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13.98,13.91,13.8,13.64,13.45,13.22,12.96,12.67,12.35,11.99,11.63,11.23,10.81,10.37,9.92,9.45,8.98,8.49,8,7.5,7,6.5,6,5.51,5.02,4.55,4.08,3.63,3.19,2.77,2.37,2.01,1.65,1.33,1.04,0.78,0.55,0.36,0.2,0.09,0.02,0,0,0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_MOUTH_FORM=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.04,0.08,0.13,0.18,0.24,0.3,0.36,0.4,0.44,0.47,0.493,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.49,0.46,0.42,0.37,0.31,0.25,0.19,0.13,0.08,0.04,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_BUST_Y=0
|
||||
PARAM_EYE_FORM=0
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_BROW_L_FORM=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_L_Y=0
|
||||
PARAM_BROW_R_ANGLE=0
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_ARM_R=0
|
||||
PARAM_BROW_R_FORM=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_TERE=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_EYE_BALL_X=0,0.003,0.011,0.024,0.04,0.059,0.08,0.1,0.12,0.14,0.165,0.183,0.199,0.212,0.222,0.228,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.229,0.224,0.218,0.209,0.197,0.184,0.169,0.151,0.132,0.11,0.09,0.07,0.04,0.02,-0.01,-0.04,-0.07,-0.09,-0.12,-0.15,-0.18,-0.21,-0.24,-0.27,-0.3,-0.32,-0.35,-0.38,-0.4,-0.43,-0.45,-0.47,-0.493,-0.512,-0.529,-0.545,-0.559,-0.571,-0.581,-0.589,-0.595,-0.599,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.581,-0.53,-0.47,-0.39,-0.31,-0.23,-0.16,-0.1,-0.04,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.002,-0.008,-0.017,-0.029,-0.044,-0.062,-0.081,-0.1,-0.13,-0.15,-0.18,-0.2,-0.23,-0.26,-0.28,-0.31,-0.33,-0.36,-0.38,-0.4,-0.42,-0.437,-0.453,-0.466,-0.476,-0.484,-0.488,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.489,-0.487,-0.483,-0.478,-0.471,-0.463,-0.454,-0.443,-0.432,-0.42,-0.407,-0.393,-0.378,-0.363,-0.347,-0.331,-0.314,-0.297,-0.28,-0.263,-0.245,-0.227,-0.21,-0.193,-0.176,-0.159,-0.143,-0.127,-0.112,-0.097,-0.083,-0.07,-0.058,-0.047,-0.036,-0.027,-0.019,-0.012,-0.007,-0.003,-0.001,0,0,0
|
||||
PARAM_EYE_BALL_Y=0,0.003,0.012,0.026,0.044,0.06,0.09,0.11,0.13,0.16,0.18,0.199,0.216,0.231,0.241,0.248,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.248,0.246,0.244,0.24,0.236,0.232,0.226,0.221,0.214,0.208,0.201,0.193,0.185,0.178,0.169,0.161,0.152,0.144,0.135,0.126,0.117,0.109,0.1,0.091,0.083,0.075,0.067,0.059,0.052,0.045,0.039,0.032,0.027,0.021,0.017,0.012,0.009,0.006,0.003,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0.002,-0.004,-0.008,-0.012,-0.016,-0.022,-0.027,-0.033,-0.04,-0.047,-0.054,-0.061,-0.068,-0.075,-0.081,-0.088,-0.094,-0.101,-0.106,-0.111,-0.116,-0.12,-0.124,-0.126,-0.128,-0.13,-0.13,-0.127,-0.119,-0.106,-0.09,-0.07,-0.05,-0.03,-0,0.02,0.05,0.07,0.1,0.12,0.14,0.161,0.178,0.191,0.201,0.208,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.209,0.207,0.205,0.202,0.198,0.194,0.19,0.185,0.18,0.174,0.168,0.162,0.156,0.149,0.142,0.135,0.127,0.12,0.113,0.105,0.097,0.09,0.083,0.075,0.068,0.061,0.054,0.048,0.042,0.036,0.03,0.025,0.02,0.016,0.012,0.008,0.005,0.003,0.001,0,0,0,0
|
33
model/HyperdimensionNeptunia/general/mtn/idle_02.mtn
Normal file
@ -0,0 +1,33 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_BROW_L_ANGLE=0
|
||||
PARAM_ANGLE_Z=0,-0.013,-0.05,-0.11,-0.2,-0.31,-0.44,-0.59,-0.75,-0.94,-1.14,-1.35,-1.58,-1.82,-2.07,-2.34,-2.6,-2.88,-3.17,-3.46,-3.75,-4.05,-4.35,-4.65,-4.95,-5.25,-5.54,-5.83,-6.12,-6.4,-6.66,-6.93,-7.18,-7.42,-7.65,-7.86,-8.06,-8.25,-8.41,-8.56,-8.69,-8.8,-8.89,-8.95,-8.99,-9,-8.96,-8.83,-8.63,-8.36,-8.04,-7.64,-7.2,-6.72,-6.19,-5.63,-5.03,-4.42,-3.77,-3.11,-2.45,-1.77,-1.08,-0.4,0.27,0.93,1.58,2.22,2.83,3.42,3.97,4.49,4.97,5.41,5.81,6.16,6.45,6.68,6.86,6.96,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.9,6.63,6.19,5.61,4.91,4.09,3.17,2.17,1.1,-0.02,-1.19,-2.38,-3.61,-4.84,-6.07,-7.29,-8.47,-9.64,-10.74,-11.79,-12.76,-13.68,-14.5,-15.22,-15.83,-16.33,-16.7,-16.92,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-16.9,-16.62,-16.16,-15.56,-14.83,-13.97,-13.01,-11.97,-10.85,-9.68,-8.47,-7.23,-5.94,-4.66,-3.38,-2.11,-0.88,0.33,1.48,2.58,3.59,4.54,5.4,6.14,6.79,7.3,7.68,7.92,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7.9,7.61,7.17,6.57,5.86,5.03,4.11,3.12,2.08,0.98,-0.13,-1.28,-2.44,-3.56,-4.67,-5.75,-6.77,-7.75,-8.65,-9.47,-10.19,-10.81,-11.31,-11.69,-11.92,-12,-11.91,-11.65,-11.24,-10.7,-10.02,-9.24,-8.34,-7.37,-6.33,-5.25,-4.09,-2.92,-1.74,-0.55,0.62,1.78,2.92,3.99,5.01,5.96,6.85,7.62,8.32,8.91,9.37,9.71,9.93,10,9.981,9.92,9.83,9.71,9.55,9.36,9.15,8.91,8.65,8.37,8.07,7.75,7.42,7.07,6.72,6.35,5.99,5.61,5.23,4.86,4.48,4.11,3.74,3.39,3.03,2.69,2.36,2.05,1.75,1.47,1.21,0.97,0.76,0.56,0.4,0.26,0.15,0.07,0.02,0,0,0,0,0,0,0
|
||||
PARAM_BODY_ANGLE_X=0,0.019,0.07,0.16,0.27,0.41,0.56,0.73,0.9,1.09,1.28,1.48,1.67,1.86,2.04,2.22,2.38,2.53,2.66,2.78,2.87,2.94,2.98,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3.008,3.03,3.07,3.12,3.18,3.25,3.33,3.42,3.52,3.62,3.72,3.83,3.94,4.06,4.17,4.28,4.38,4.48,4.58,4.67,4.75,4.82,4.88,4.93,4.97,4.99,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.97,4.87,4.72,4.53,4.29,4.02,3.71,3.4,3.06,2.72,2.37,2.03,1.7,1.39,1.09,0.83,0.59,0.38,0.22,0.1,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.03,-0.1,-0.22,-0.36,-0.54,-0.75,-0.97,-1.21,-1.46,-1.71,-1.97,-2.23,-2.48,-2.72,-2.95,-3.17,-3.37,-3.55,-3.7,-3.83,-3.92,-3.98,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.998,-3.992,-3.981,-3.967,-3.949,-3.93,-3.9,-3.87,-3.84,-3.8,-3.77,-3.72,-3.68,-3.63,-3.58,-3.53,-3.47,-3.41,-3.35,-3.29,-3.22,-3.16,-3.09,-3.02,-2.94,-2.87,-2.79,-2.71,-2.63,-2.55,-2.47,-2.38,-2.3,-2.21,-2.12,-2.03,-1.94,-1.85,-1.76,-1.67,-1.57,-1.48,-1.38,-1.29,-1.19,-1.1,-1,-0.9,-0.81,-0.72,-0.64,-0.57,-0.5,-0.44,-0.38,-0.33,-0.29,-0.24,-0.21,-0.17,-0.14,-0.12,-0.1,-0.076,-0.059,-0.045,-0.033,-0.024,-0.016,-0.011,-0.006,-0.003,-0.001,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BODY_ANGLE_Z=0,-0.003,-0.011,-0.025,-0.045,-0.07,-0.1,-0.13,-0.17,-0.21,-0.25,-0.3,-0.35,-0.4,-0.46,-0.52,-0.58,-0.64,-0.7,-0.77,-0.83,-0.9,-0.97,-1.03,-1.1,-1.17,-1.23,-1.3,-1.36,-1.42,-1.48,-1.54,-1.6,-1.65,-1.7,-1.75,-1.79,-1.83,-1.87,-1.9,-1.93,-1.96,-1.975,-1.989,-1.997,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1.992,-1.97,-1.93,-1.88,-1.82,-1.75,-1.67,-1.58,-1.48,-1.38,-1.28,-1.17,-1.06,-0.94,-0.83,-0.72,-0.62,-0.52,-0.42,-0.33,-0.25,-0.18,-0.12,-0.07,-0.03,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.006,-0.025,-0.05,-0.09,-0.14,-0.19,-0.24,-0.3,-0.36,-0.43,-0.49,-0.56,-0.62,-0.68,-0.74,-0.79,-0.84,-0.89,-0.93,-0.96,-0.98,-0.995,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.9,-0.79,-0.64,-0.46,-0.26,-0.03,0.22,0.48,0.76,1.03,1.32,1.61,1.89,2.17,2.44,2.69,2.94,3.16,3.37,3.55,3.7,3.83,3.92,3.98,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3.984,3.94,3.86,3.76,3.64,3.5,3.33,3.16,2.97,2.77,2.56,2.35,2.13,1.92,1.71,1.5,1.29,1.09,0.91,0.73,0.57,0.43,0.31,0.2,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_ANGLE_Y=0,-0.05,-0.2,-0.43,-0.72,-1.09,-1.49,-1.94,-2.41,-2.91,-3.42,-3.94,-4.45,-4.95,-5.45,-5.91,-6.34,-6.74,-7.1,-7.41,-7.66,-7.84,-7.96,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-7.96,-7.83,-7.63,-7.36,-7.04,-6.64,-6.2,-5.72,-5.19,-4.63,-4.03,-3.42,-2.77,-2.11,-1.45,-0.77,-0.08,0.6,1.27,1.93,2.58,3.22,3.83,4.42,4.97,5.49,5.97,6.41,6.81,7.16,7.45,7.68,7.86,7.96,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7.97,7.88,7.73,7.54,7.3,7.03,6.72,6.39,6.03,5.66,5.27,4.87,4.46,4.05,3.64,3.24,2.84,2.45,2.09,1.74,1.41,1.11,0.83,0.59,0.39,0.22,0.1,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.06,-0.21,-0.46,-0.79,-1.18,-1.63,-2.14,-2.68,-3.26,-3.86,-4.47,-5.11,-5.74,-6.36,-6.97,-7.56,-8.12,-8.66,-9.16,-9.61,-10,-10.34,-10.62,-10.83,-10.96,-11,-10.989,-10.96,-10.9,-10.83,-10.74,-10.63,-10.5,-10.36,-10.2,-10.02,-9.84,-9.64,-9.43,-9.21,-8.98,-8.73,-8.48,-8.22,-7.96,-7.69,-7.41,-7.13,-6.85,-6.56,-6.27,-5.97,-5.69,-5.39,-5.1,-4.8,-4.51,-4.23,-3.95,-3.67,-3.39,-3.12,-2.86,-2.61,-2.36,-2.12,-1.89,-1.67,-1.46,-1.26,-1.07,-0.9,-0.74,-0.59,-0.46,-0.34,-0.24,-0.16,-0.09,-0.04,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BROW_R_Y=0
|
||||
PARAM_ANGLE_X=0,0.1,0.37,0.81,1.36,2.04,2.8,3.63,4.52,5.46,6.4,7.38,8.34,9.29,10.21,11.08,11.89,12.64,13.31,13.88,14.36,14.71,14.92,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15.005,15.021,15.05,15.08,15.12,15.17,15.22,15.29,15.35,15.42,15.5,15.57,15.65,15.74,15.82,15.9,15.99,16.07,16.16,16.24,16.32,16.4,16.48,16.55,16.62,16.69,16.75,16.8,16.85,16.89,16.93,16.96,16.98,16.995,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16.93,16.74,16.43,16.02,15.52,14.94,14.29,13.58,12.82,12.03,11.2,10.35,9.48,8.61,7.74,6.88,6.04,5.22,4.43,3.69,3,2.35,1.77,1.26,0.83,0.48,0.21,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_MOUTH_FORM=0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_BUST_Y=0
|
||||
PARAM_EYE_FORM=0
|
||||
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BROW_L_FORM=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_L_Y=0
|
||||
PARAM_BROW_R_ANGLE=0
|
||||
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ARM_R=0
|
||||
PARAM_BROW_R_FORM=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_TERE=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_EYE_BALL_X=0,-0.004,-0.014,-0.031,-0.05,-0.08,-0.11,-0.14,-0.17,-0.21,-0.25,-0.29,-0.32,-0.36,-0.39,-0.43,-0.46,-0.49,-0.51,-0.54,-0.555,-0.569,-0.577,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.579,-0.578,-0.575,-0.572,-0.568,-0.563,-0.558,-0.551,-0.545,-0.538,-0.53,-0.523,-0.515,-0.506,-0.498,-0.49,-0.481,-0.473,-0.464,-0.456,-0.448,-0.44,-0.432,-0.425,-0.418,-0.411,-0.405,-0.4,-0.395,-0.391,-0.387,-0.384,-0.382,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.38,-0.378,-0.374,-0.367,-0.358,-0.347,-0.334,-0.319,-0.304,-0.287,-0.269,-0.25,-0.231,-0.212,-0.193,-0.173,-0.154,-0.135,-0.117,-0.099,-0.082,-0.067,-0.053,-0.04,-0.028,-0.018,-0.011,-0.005,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.002,0.003,0.004,0.006,0.007,0.009,0.011,0.012,0.014,0.016,0.017,0.019,0.021,0.022,0.024,0.025,0.026,0.027,0.028,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.03,0.029,0.03,0.03,0.028,0.03,0.027,0.03,0.026,0.03,0.024,0.024,0.02,0.022,0.022,0.021,0.02,0.019,0.019,0.018,0.02,0.016,0.016,0.015,0.014,0.01,0.012,0.012,0.011,0.01,0.01,0.009,0.008,0.01,0.006,0.006,0.01,0.005,0.004,0,0.003,0,0,0.002,0,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_Y=0,0.001,0.005,0.011,0.019,0.029,0.039,0.051,0.063,0.076,0.09,0.103,0.117,0.13,0.143,0.155,0.166,0.177,0.186,0.194,0.201,0.206,0.209,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.208,0.203,0.195,0.183,0.17,0.153,0.135,0.114,0.09,0.07,0.04,0.02,-0.01,-0.04,-0.06,-0.09,-0.12,-0.15,-0.18,-0.21,-0.23,-0.26,-0.29,-0.31,-0.33,-0.35,-0.38,-0.394,-0.41,-0.425,-0.437,-0.447,-0.454,-0.458,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.46,-0.458,-0.453,-0.445,-0.433,-0.42,-0.404,-0.387,-0.367,-0.35,-0.33,-0.3,-0.28,-0.26,-0.23,-0.21,-0.19,-0.16,-0.14,-0.12,-0.1,-0.081,-0.064,-0.048,-0.034,-0.022,-0.013,-0.006,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.014,0.03,0.05,0.08,0.11,0.14,0.17,0.21,0.25,0.29,0.33,0.37,0.41,0.45,0.49,0.52,0.56,0.59,0.62,0.65,0.67,0.686,0.699,0.707,0.71,0.709,0.707,0.704,0.699,0.693,0.686,0.678,0.668,0.658,0.647,0.635,0.622,0.609,0.594,0.579,0.564,0.548,0.531,0.514,0.496,0.479,0.46,0.442,0.423,0.405,0.386,0.367,0.348,0.329,0.31,0.291,0.273,0.255,0.237,0.219,0.202,0.185,0.168,0.152,0.137,0.122,0.108,0.094,0.081,0.069,0.058,0.048,0.038,0.029,0.022,0.015,0.01,0.006,0.003,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
37
model/HyperdimensionNeptunia/general/pose.json
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"type":"Live2D Pose",
|
||||
"parts_visible":[
|
||||
{
|
||||
"group":[
|
||||
{
|
||||
"id":"PARTS_01_ARM_L_A_001",
|
||||
"link":[
|
||||
"PARTS_01_ARM_L_A_002"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id":"PARTS_01_ARM_L_B_001",
|
||||
"link":[
|
||||
"PARTS_01_ARM_L_B_002"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"group":[
|
||||
{
|
||||
"id":"PARTS_01_ARM_R_A_001",
|
||||
"link":[
|
||||
"PARTS_01_ARM_R_A_002"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id":"PARTS_01_ARM_R_B_001",
|
||||
"link":[
|
||||
"PARTS_01_ARM_R_B_002"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
30
model/HyperdimensionNeptunia/histoire/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.8,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/histoire/model.moc
Normal file
131
model/HyperdimensionNeptunia/histoire/physics.json
Normal file
@ -0,0 +1,131 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.15,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.015,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2.4,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.35,
|
||||
"regist":0.6,
|
||||
"mass":0.22
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.015,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2.4,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.7,
|
||||
"mass":0.25
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.012,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/histoire/textures.1024/00.png
Normal file
After Width: | Height: | Size: 389 KiB |
BIN
model/HyperdimensionNeptunia/histoire/textures.1024/01.png
Normal file
After Width: | Height: | Size: 620 KiB |
BIN
model/HyperdimensionNeptunia/histoire/textures.1024/02.png
Normal file
After Width: | Height: | Size: 688 KiB |
BIN
model/HyperdimensionNeptunia/histoire/textures.1024/03.png
Normal file
After Width: | Height: | Size: 628 KiB |
30
model/HyperdimensionNeptunia/histoirenohover/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.8,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/histoirenohover/model.moc
Normal file
131
model/HyperdimensionNeptunia/histoirenohover/physics.json
Normal file
@ -0,0 +1,131 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.15,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.015,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2.4,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.35,
|
||||
"regist":0.6,
|
||||
"mass":0.22
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.015,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2.4,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.7,
|
||||
"mass":0.25
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.012,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":0.5
|
||||
},
|
||||
{
|
||||
"id":"PARAM_BODY_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":2,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
After Width: | Height: | Size: 389 KiB |
After Width: | Height: | Size: 620 KiB |
After Width: | Height: | Size: 688 KiB |
After Width: | Height: | Size: 628 KiB |
30
model/HyperdimensionNeptunia/nepgear/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.7,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgear/model.moc
Normal file
132
model/HyperdimensionNeptunia/nepgear/physics.json
Normal file
@ -0,0 +1,132 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.3,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":1.4,
|
||||
"mass":0.5
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_01_AHO_R",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":1.4,
|
||||
"mass":0.5
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_01_AHO_L",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgear/textures.1024/00.png
Normal file
After Width: | Height: | Size: 853 KiB |
BIN
model/HyperdimensionNeptunia/nepgear/textures.1024/01.png
Normal file
After Width: | Height: | Size: 664 KiB |
BIN
model/HyperdimensionNeptunia/nepgear/textures.1024/02.png
Normal file
After Width: | Height: | Size: 622 KiB |
BIN
model/HyperdimensionNeptunia/nepgear/textures.1024/03.png
Normal file
After Width: | Height: | Size: 305 KiB |
30
model/HyperdimensionNeptunia/nepgear_extra/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.7,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgear_extra/model.moc
Normal file
95
model/HyperdimensionNeptunia/nepgear_extra/physics.json
Normal file
@ -0,0 +1,95 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"label":"hair_front",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"x",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_back",
|
||||
"setup":{
|
||||
"length":0.34,
|
||||
"regist":0.5,
|
||||
"mass":0.2
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label":"hair_side",
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgear_extra/textures.1024/00.png
Normal file
After Width: | Height: | Size: 190 KiB |
BIN
model/HyperdimensionNeptunia/nepgear_extra/textures.1024/01.png
Normal file
After Width: | Height: | Size: 638 KiB |
BIN
model/HyperdimensionNeptunia/nepgear_extra/textures.1024/02.png
Normal file
After Width: | Height: | Size: 155 KiB |
BIN
model/HyperdimensionNeptunia/nepgear_extra/textures.1024/03.png
Normal file
After Width: | Height: | Size: 125 KiB |
30
model/HyperdimensionNeptunia/nepgearswim/index.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png",
|
||||
"textures.1024/03.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.7,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgearswim/model.moc
Normal file
132
model/HyperdimensionNeptunia/nepgearswim/physics.json
Normal file
@ -0,0 +1,132 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.3,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":1.4,
|
||||
"mass":0.5
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_01_AHO_R",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":1.4,
|
||||
"mass":0.5
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_01_AHO_L",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepgearswim/textures.1024/00.png
Normal file
After Width: | Height: | Size: 853 KiB |
BIN
model/HyperdimensionNeptunia/nepgearswim/textures.1024/01.png
Normal file
After Width: | Height: | Size: 664 KiB |
BIN
model/HyperdimensionNeptunia/nepgearswim/textures.1024/02.png
Normal file
After Width: | Height: | Size: 134 KiB |
BIN
model/HyperdimensionNeptunia/nepgearswim/textures.1024/03.png
Normal file
After Width: | Height: | Size: 72 KiB |
50
model/HyperdimensionNeptunia/nepmaid/index.json
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
"version":"Sample 1.0.0",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"textures.1024/00.png",
|
||||
"textures.1024/01.png",
|
||||
"textures.1024/02.png"
|
||||
],
|
||||
"pose": "../general/pose.json",
|
||||
"physics": "physics.json",
|
||||
"layout": {
|
||||
"center_x": 0,
|
||||
"center_y": -0.5,
|
||||
"width": 3
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.35, 0.6],
|
||||
"head_y":[0.19, -0.2],
|
||||
"body_x":[-0.3, -0.25],
|
||||
"body_y":[0.3, -0.9]
|
||||
},
|
||||
"expressions": [
|
||||
{"name": "normal", "file": "expressions/../../nepnep/general/exp/normal.json"},
|
||||
{"name": "happy", "file": "expressions/../../nepnep/general/exp/happy.json"},
|
||||
{"name": "unhappy", "file": "expressions/../../nepnep/general/exp/unhappy.json"},
|
||||
{"name": "kira", "file": "expressions/../../nepnep/general/exp/kira.json"},
|
||||
{"name": "deformed", "file": "expressions/../../nepnep/general/exp/deformed.json"},
|
||||
{"name": "enjoy", "file": "expressions/../../nepnep/general/exp/enjoy.json"}
|
||||
],
|
||||
"motions": {
|
||||
"idle": [
|
||||
{"file": "motions/../../nepnep/general/mtn/idle_00.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../nepnep/general/mtn/idle_01.mtn", "fade_in": 2000, "fade_out": 2000},
|
||||
{"file": "motions/../../nepnep/general/mtn/idle_02.mtn", "fade_in": 2000, "fade_out": 2000}
|
||||
],
|
||||
"flick_head": [
|
||||
{"file": "motions/../../nepnep/general/mtn/smile.mtn"},
|
||||
{"file": "motions/../../nepnep/general/mtn/shake.mtn"},
|
||||
{"file": "motions/../../nepnep/general/mtn/refuse.mtn"},
|
||||
{"file": "motions/../../nepnep/general/mtn/tilt_head.mtn"}
|
||||
],
|
||||
"tap_body": [
|
||||
{"dialogue": 11, "sound": "sounds/../../nepnep/general/snd/001.ogg", "file": "motions/../../nepnep/general/mtn/nep_touch_head_1.mtn"},
|
||||
{"dialogue": 13, "sound": "sounds/../../nepnep/general/snd/013.ogg", "file": "motions/../../nepnep/general/mtn/nep_touch_belly_1.mtn"},
|
||||
{"dialogue": 90, "sound": "sounds/../../nepnep/general/snd/101.ogg", "file": "motions/../../nepnep/general/mtn/nep_slide_head_2.mtn"},
|
||||
{"dialogue": 93, "sound": "sounds/../../nepnep/general/snd/007.ogg", "file": "motions/../../nepnep/general/mtn/nep_touch_boobs_1.mtn"},
|
||||
{"dialogue": 94, "sound": "sounds/../../nepnep/general/snd/014.ogg", "file": "motions/../../nepnep/general/mtn/nep_touch_belly_2.mtn"}
|
||||
]
|
||||
}
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepmaid/model.moc
Normal file
109
model/HyperdimensionNeptunia/nepmaid/physics.json
Normal file
@ -0,0 +1,109 @@
|
||||
{
|
||||
"type":"Live2D Physics",
|
||||
"physics_hair":[
|
||||
{
|
||||
"setup":{
|
||||
"length":0.17,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.025,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_FRONT",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_SIDE",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":0.5,
|
||||
"mass":0.2
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.01,
|
||||
"weight":1
|
||||
},
|
||||
{
|
||||
"id":"PARAM_ANGLE_Z",
|
||||
"ptype":"angle",
|
||||
"scale":0.8,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_HAIR_BACK",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"setup":{
|
||||
"length":0.2,
|
||||
"regist":1.4,
|
||||
"mass":1
|
||||
},
|
||||
"src":[
|
||||
{
|
||||
"id":"PARAM_ANGLE_X",
|
||||
"ptype":"x",
|
||||
"scale":0.005,
|
||||
"weight":1
|
||||
}
|
||||
],
|
||||
"targets":[
|
||||
{
|
||||
"id":"PARAM_STRING",
|
||||
"ptype":"angle",
|
||||
"scale":0.022,
|
||||
"weight":1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
BIN
model/HyperdimensionNeptunia/nepmaid/textures.1024/00.png
Normal file
After Width: | Height: | Size: 624 KiB |
BIN
model/HyperdimensionNeptunia/nepmaid/textures.1024/01.png
Normal file
After Width: | Height: | Size: 599 KiB |
BIN
model/HyperdimensionNeptunia/nepmaid/textures.1024/02.png
Normal file
After Width: | Height: | Size: 732 KiB |
@ -0,0 +1,9 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500,
|
||||
"params":[
|
||||
{"id":"PARAM_FACE_COVER","val":1},
|
||||
{"id":"PARAM_EYE_DEFORMED_02","val":1}
|
||||
]
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500,
|
||||
"params":[
|
||||
{"id":"PARAM_FACE_COVER","val":1},
|
||||
{"id":"PARAM_EYE_DEFORMED_04","val":1}
|
||||
]
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500,
|
||||
"params":[
|
||||
{"id":"PARAM_FACE_COVER","val":1},
|
||||
{"id":"PARAM_EYE_DEFORMED_03","val":1}
|
||||
]
|
||||
}
|
10
model/HyperdimensionNeptunia/nepnep/general/exp/kira.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500,
|
||||
"params":[
|
||||
{"id":"PARAM_EYE_BALL_GLITTER","val":1},
|
||||
{"id":"PARAM_BROW_L_Y","val":1},
|
||||
{"id":"PARAM_BROW_R_Y","val":1}
|
||||
]
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500
|
||||
}
|
16
model/HyperdimensionNeptunia/nepnep/general/exp/unhappy.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"type":"Live2D Expression",
|
||||
"fade_in":500,
|
||||
"fade_out":500,
|
||||
"params":[
|
||||
{"id":"PARAM_EYE_L_OPEN","val":0.6,"def":1},
|
||||
{"id":"PARAM_EYE_R_OPEN","val":0.6,"def":1},
|
||||
{"id":"PARAM_BROW_L_Y","val":-0.5},
|
||||
{"id":"PARAM_BROW_R_Y","val":-0.5},
|
||||
{"id":"PARAM_BROW_L_ANGLE","val":-0.5},
|
||||
{"id":"PARAM_BROW_R_ANGLE","val":-0.5},
|
||||
{"id":"PARAM_BROW_L_FORM","val":-0.5},
|
||||
{"id":"PARAM_BROW_R_FORM","val":-0.5},
|
||||
{"id":"PARAM_MOUTH_FORM","val":-1,"def":1}
|
||||
]
|
||||
}
|
44
model/HyperdimensionNeptunia/nepnep/general/mtn/idle_00.mtn
Normal file
@ -0,0 +1,44 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_SHOULDER_X=0
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_FACE_COVER=0
|
||||
PARAM_FEAR=0
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_BROW_L_FORM=0
|
||||
PARAM_TEAR=0
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_DEFORMED=0
|
||||
PARAM_BROW_L_Y=0
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_EYE_BALL_X=0,0,0.002,0.005,0.009,0.014,0.02,0.027,0.034,0.042,0.051,0.06,0.07,0.08,0.091,0.101,0.113,0.124,0.135,0.146,0.157,0.169,0.179,0.19,0.2,0.21,0.219,0.228,0.236,0.243,0.25,0.256,0.261,0.265,0.268,0.269,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.27,0.269,0.267,0.263,0.258,0.252,0.244,0.236,0.227,0.216,0.205,0.193,0.181,0.168,0.154,0.14,0.126,0.111,0.097,0.082,0.067,0.052,0.037,0.023,0.008,-0.006,-0.02,-0.033,-0.046,-0.059,-0.07,-0.081,-0.092,-0.101,-0.11,-0.117,-0.124,-0.13,-0.134,-0.137,-0.139,-0.14,-0.14,-0.14,-0.14,-0.14,-0.14,-0.139,-0.14,-0.138,-0.14,-0.136,-0.136,-0.135,-0.13,-0.133,-0.132,-0.131,-0.13,-0.129,-0.128,-0.127,-0.125,-0.124,-0.123,-0.121,-0.12,-0.119,-0.117,-0.115,-0.114,-0.112,-0.111,-0.109,-0.107,-0.106,-0.104,-0.102,-0.1,-0.098,-0.097,-0.095,-0.093,-0.091,-0.089,-0.087,-0.085,-0.083,-0.081,-0.079,-0.077,-0.075,-0.073,-0.071,-0.069,-0.067,-0.065,-0.063,-0.061,-0.059,-0.057,-0.055,-0.054,-0.052,-0.05,-0.048,-0.046,-0.044,-0.042,-0.04,-0.039,-0.037,-0.035,-0.033,-0.032,-0.03,-0.028,-0.027,-0.025,-0.024,-0.022,-0.021,-0.019,-0.018,-0.017,-0.015,-0.014,-0.013,-0.012,-0.01,-0.009,-0.008,-0.007,-0.006,-0.006,-0.005,-0,-0.003,-0.003,-0,-0.002,-0,-0.001,-0,-0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.006,-0.022,-0.05,-0.07,-0.11,-0.14,-0.17,-0.21,-0.24,-0.26,-0.29,-0.304,-0.316,-0.32,-0.318,-0.312,-0.303,-0.291,-0.277,-0.26,-0.243,-0.224,-0.204,-0.183,-0.16,-0.14,-0.122,-0.102,-0.084,-0.066,-0.05,-0.036,-0.024,-0.014,-0.006,-0.002,0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_EYE_BALL_Y=0,0,0.002,0.003,0.006,0.009,0.013,0.017,0.021,0.027,0.032,0.038,0.044,0.051,0.057,0.064,0.071,0.078,0.085,0.092,0.099,0.106,0.113,0.119,0.126,0.132,0.138,0.143,0.149,0.153,0.157,0.161,0.164,0.167,0.168,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.167,0.164,0.159,0.153,0.146,0.138,0.13,0.12,0.11,0.099,0.087,0.075,0.063,0.05,0.037,0.023,0.009,-0.004,-0.018,-0.032,-0.046,-0.059,-0.073,-0.086,-0.099,-0.111,-0.123,-0.134,-0.145,-0.156,-0.165,-0.174,-0.182,-0.189,-0.195,-0.2,-0.204,-0.207,-0.209,-0.21,-0.21,-0.21,-0.21,-0.21,-0.209,-0.21,-0.207,-0.207,-0.206,-0.205,-0.204,-0.202,-0.201,-0.2,-0.198,-0.197,-0.195,-0.194,-0.192,-0.19,-0.188,-0.186,-0.184,-0.182,-0.18,-0.178,-0.176,-0.173,-0.171,-0.168,-0.166,-0.163,-0.161,-0.158,-0.156,-0.153,-0.15,-0.148,-0.145,-0.142,-0.139,-0.136,-0.133,-0.13,-0.128,-0.125,-0.122,-0.119,-0.116,-0.113,-0.11,-0.107,-0.104,-0.101,-0.098,-0.095,-0.092,-0.089,-0.086,-0.083,-0.08,-0.077,-0.075,-0.072,-0.069,-0.066,-0.063,-0.061,-0.058,-0.055,-0.053,-0.05,-0.047,-0.045,-0.042,-0.04,-0.038,-0.035,-0.033,-0.031,-0.029,-0.027,-0.025,-0.023,-0.021,-0.019,-0.017,-0.016,-0.014,-0.013,-0.011,-0.01,-0.008,-0.007,-0.006,-0.005,-0.004,-0.003,-0.003,-0.002,-0,-0.001,-0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.005,0.011,0.018,0.026,0.035,0.043,0.051,0.059,0.066,0.072,0.076,0.079,0.08,0.079,0.078,0.076,0.073,0.069,0.065,0.061,0.056,0.051,0.046,0.041,0.035,0.03,0.026,0.021,0.017,0.013,0.009,0.006,0.003,0.002,0,0
|
||||
PARAM_BROW_L_ANGLE=0
|
||||
PARAM_EYE_DEFORMED_04=0
|
||||
PARAM_EYE_DEFORMED_03=0
|
||||
PARAM_EYE_DEFORMED_02=0
|
||||
PARAM_EYE_DEFORMED_01=0
|
||||
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.13,-0.52,-1.1,-1.88,-2.8,-3.84,-4.97,-6.14,-7.35,-8.55,-9.71,-10.8,-11.82,-12.72,-13.51,-14.14,-14.61,-14.9,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-14.9,-14.61,-14.14,-13.52,-12.76,-11.9,-10.9,-9.85,-8.73,-7.55,-6.37,-5.15,-3.95,-2.76,-1.6,-0.49,0.54,1.49,2.36,3.13,3.78,4.3,4.68,4.92,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.83,4.38,3.73,2.92,2.03,1.09,0.14,-0.78,-1.64,-2.41,-3.05,-3.56,-3.89,-4,-3.97,-3.9,-3.78,-3.64,-3.46,-3.25,-3.03,-2.79,-2.54,-2.29,-2.03,-1.77,-1.52,-1.28,-1.05,-0.83,-0.63,-0.45,-0.3,-0.17,-0.08,-0.02,0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.017,0.04,0.07,0.1,0.15,0.2,0.25,0.31,0.38,0.45,0.53,0.61,0.69,0.78,0.87,0.96,1.06,1.15,1.25,1.35,1.45,1.55,1.65,1.75,1.85,1.94,2.04,2.13,2.22,2.31,2.39,2.47,2.55,2.62,2.69,2.75,2.8,2.85,2.9,2.93,2.96,2.98,2.996,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2.97,2.88,2.74,2.56,2.33,2.07,1.77,1.45,1.12,0.77,0.41,0.04,-0.32,-0.67,-1.02,-1.35,-1.66,-1.95,-2.21,-2.44,-2.63,-2.79,-2.9,-2.98,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.993,-2.973,-2.94,-2.9,-2.84,-2.78,-2.7,-2.62,-2.53,-2.44,-2.33,-2.23,-2.11,-2,-1.88,-1.76,-1.64,-1.52,-1.39,-1.27,-1.15,-1.03,-0.92,-0.81,-0.7,-0.6,-0.51,-0.42,-0.34,-0.26,-0.2,-0.14,-0.09,-0.05,-0.02,-0.006,0
|
||||
PARAM_BODY_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.04,0.08,0.14,0.22,0.31,0.42,0.53,0.66,0.79,0.94,1.09,1.25,1.41,1.58,1.76,1.93,2.11,2.3,2.48,2.66,2.84,3.02,3.19,3.37,3.53,3.7,3.86,4.01,4.15,4.28,4.41,4.53,4.63,4.72,4.8,4.87,4.93,4.97,4.99,5,4.984,4.94,4.86,4.76,4.63,4.48,4.31,4.13,3.93,3.71,3.49,3.25,3.02,2.77,2.53,2.29,2.05,1.81,1.58,1.36,1.15,0.95,0.77,0.6,0.45,0.32,0.21,0.12,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BODY_ANGLE_Z=0,-0.007,-0.027,-0.06,-0.1,-0.16,-0.22,-0.3,-0.38,-0.47,-0.57,-0.67,-0.78,-0.89,-1.01,-1.13,-1.25,-1.37,-1.5,-1.63,-1.75,-1.87,-1.99,-2.11,-2.22,-2.33,-2.43,-2.53,-2.62,-2.7,-2.78,-2.84,-2.9,-2.94,-2.97,-2.993,-3,-3,-3,-3,-3,-3,-3,-3,-2.994,-2.977,-2.95,-2.91,-2.87,-2.81,-2.75,-2.68,-2.61,-2.52,-2.44,-2.35,-2.25,-2.15,-2.05,-1.95,-1.84,-1.73,-1.62,-1.51,-1.41,-1.3,-1.19,-1.08,-0.98,-0.88,-0.78,-0.69,-0.6,-0.51,-0.43,-0.35,-0.28,-0.22,-0.17,-0.12,-0.08,-0.04,-0.02,-0.005,0,-0.006,-0.023,-0.05,-0.09,-0.14,-0.19,-0.26,-0.33,-0.42,-0.5,-0.6,-0.7,-0.81,-0.92,-1.04,-1.16,-1.28,-1.41,-1.54,-1.67,-1.8,-1.93,-2.07,-2.2,-2.33,-2.46,-2.59,-2.72,-2.84,-2.96,-3.08,-3.19,-3.3,-3.4,-3.5,-3.58,-3.67,-3.74,-3.81,-3.86,-3.91,-3.95,-3.98,-3.994,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.98,-3.92,-3.83,-3.7,-3.55,-3.38,-3.18,-2.97,-2.75,-2.51,-2.27,-2.03,-1.79,-1.55,-1.32,-1.1,-0.89,-0.7,-0.53,-0.37,-0.24,-0.14,-0.06,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BROW_R_Y=0
|
||||
PARAM_ANGLE_Y=0,-0.03,-0.13,-0.28,-0.48,-0.73,-1.04,-1.38,-1.77,-2.19,-2.64,-3.12,-3.63,-4.16,-4.7,-5.26,-5.84,-6.42,-7,-7.58,-8.16,-8.74,-9.3,-9.84,-10.37,-10.88,-11.36,-11.81,-12.23,-12.62,-12.96,-13.27,-13.52,-13.72,-13.87,-13.97,-14,-14,-14,-14,-14,-14,-14,-14,-13.95,-13.79,-13.53,-13.19,-12.76,-12.25,-11.67,-11.03,-10.33,-9.56,-8.75,-7.91,-7.01,-6.09,-5.14,-4.17,-3.17,-2.17,-1.15,-0.12,0.88,1.9,2.89,3.89,4.85,5.79,6.72,7.59,8.43,9.23,9.99,10.69,11.34,11.92,12.44,12.9,13.29,13.59,13.81,13.95,14,13.989,13.95,13.9,13.82,13.72,13.61,13.47,13.32,13.15,12.96,12.76,12.54,12.31,12.07,11.81,11.55,11.27,10.98,10.68,10.37,10.05,9.73,9.41,9.07,8.74,8.39,8.05,7.7,7.35,7,6.65,6.3,5.95,5.61,5.26,4.93,4.59,4.27,3.95,3.63,3.32,3.02,2.73,2.45,2.19,1.93,1.69,1.46,1.24,1.04,0.85,0.68,0.53,0.39,0.28,0.18,0.1,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_ANGLE_X=0,-0.005,-0.018,-0.04,-0.07,-0.1,-0.15,-0.2,-0.25,-0.31,-0.38,-0.45,-0.52,-0.59,-0.67,-0.75,-0.83,-0.92,-1,-1.08,-1.17,-1.25,-1.33,-1.41,-1.48,-1.55,-1.62,-1.69,-1.75,-1.8,-1.85,-1.9,-1.93,-1.96,-1.98,-1.995,-2,-2,-2,-2,-2,-2,-2,-2,-1.996,-1.985,-1.967,-1.94,-1.91,-1.87,-1.83,-1.79,-1.74,-1.68,-1.62,-1.56,-1.5,-1.43,-1.37,-1.3,-1.23,-1.15,-1.08,-1.01,-0.94,-0.86,-0.79,-0.72,-0.65,-0.59,-0.52,-0.46,-0.4,-0.34,-0.29,-0.24,-0.19,-0.15,-0.11,-0.08,-0.05,-0.03,-0.013,-0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ARM_R=-2,-2.011,-2.04,-2.1,-2.17,-2.26,-2.37,-2.49,-2.63,-2.78,-2.94,-3.12,-3.3,-3.49,-3.68,-3.88,-4.08,-4.29,-4.5,-4.71,-4.92,-5.12,-5.32,-5.51,-5.7,-5.88,-6.06,-6.22,-6.37,-6.51,-6.63,-6.74,-6.83,-6.9,-6.96,-6.99,-7,-7,-7,-7,-7,-7,-7,-7,-6.987,-6.95,-6.88,-6.8,-6.69,-6.56,-6.42,-6.26,-6.08,-5.89,-5.69,-5.48,-5.25,-5.02,-4.79,-4.54,-4.29,-4.04,-3.79,-3.53,-3.28,-3.02,-2.78,-2.53,-2.29,-2.05,-1.82,-1.6,-1.39,-1.19,-1,-0.83,-0.66,-0.52,-0.39,-0.27,-0.18,-0.1,-0.05,-0.01,0,-0.006,-0.025,-0.06,-0.1,-0.15,-0.21,-0.27,-0.35,-0.43,-0.52,-0.61,-0.7,-0.79,-0.89,-0.99,-1.08,-1.18,-1.28,-1.37,-1.46,-1.54,-1.62,-1.69,-1.76,-1.82,-1.87,-1.92,-1.95,-1.98,-1.995,-2,-1.982,-1.93,-1.85,-1.75,-1.63,-1.49,-1.34,-1.18,-1.02,-0.86,-0.71,-0.56,-0.42,-0.3,-0.2,-0.11,-0.05,-0.01,0,-0.003,-0.01,-0.022,-0.04,-0.06,-0.09,-0.12,-0.15,-0.18,-0.22,-0.27,-0.31,-0.36,-0.41,-0.46,-0.52,-0.57,-0.63,-0.69,-0.75,-0.81,-0.87,-0.93,-0.99,-1.05,-1.12,-1.18,-1.24,-1.29,-1.35,-1.41,-1.47,-1.52,-1.57,-1.62,-1.67,-1.71,-1.76,-1.8,-1.83,-1.87,-1.9,-1.92,-1.95,-1.965,-1.98,-1.991,-1.998,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2
|
||||
PARAM_ARM_L=-2,-2.011,-2.04,-2.1,-2.17,-2.26,-2.37,-2.49,-2.63,-2.78,-2.94,-3.12,-3.3,-3.49,-3.68,-3.88,-4.08,-4.29,-4.5,-4.71,-4.92,-5.12,-5.32,-5.51,-5.7,-5.88,-6.06,-6.22,-6.37,-6.51,-6.63,-6.74,-6.83,-6.9,-6.96,-6.99,-7,-7,-7,-7,-7,-7,-7,-7,-6.987,-6.95,-6.88,-6.8,-6.69,-6.56,-6.42,-6.26,-6.08,-5.89,-5.69,-5.48,-5.25,-5.02,-4.79,-4.54,-4.29,-4.04,-3.79,-3.53,-3.28,-3.02,-2.78,-2.53,-2.29,-2.05,-1.82,-1.6,-1.39,-1.19,-1,-0.83,-0.66,-0.52,-0.39,-0.27,-0.18,-0.1,-0.05,-0.01,0,-0.006,-0.025,-0.06,-0.1,-0.15,-0.21,-0.27,-0.35,-0.43,-0.52,-0.61,-0.7,-0.79,-0.89,-0.99,-1.08,-1.18,-1.28,-1.37,-1.46,-1.54,-1.62,-1.69,-1.76,-1.82,-1.87,-1.92,-1.95,-1.98,-1.995,-2,-1.982,-1.93,-1.85,-1.75,-1.63,-1.49,-1.34,-1.18,-1.02,-0.86,-0.71,-0.56,-0.42,-0.3,-0.2,-0.11,-0.05,-0.01,0,-0.003,-0.01,-0.022,-0.04,-0.06,-0.09,-0.12,-0.15,-0.18,-0.22,-0.27,-0.31,-0.36,-0.41,-0.46,-0.52,-0.57,-0.63,-0.69,-0.75,-0.81,-0.87,-0.93,-0.99,-1.05,-1.12,-1.18,-1.24,-1.29,-1.35,-1.41,-1.47,-1.52,-1.57,-1.62,-1.67,-1.71,-1.76,-1.8,-1.83,-1.87,-1.9,-1.92,-1.95,-1.965,-1.98,-1.991,-1.998,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2
|
||||
PARAM_MOUTH_FORM=-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.85,-0.5,-0.06,0.37,0.71,0.93,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.997,0.99,0.978,0.96,0.94,0.91,0.88,0.85,0.82,0.78,0.73,0.69,0.64,0.59,0.54,0.48,0.43,0.37,0.31,0.25,0.19,0.13,0.07,0.01,-0.05,-0.12,-0.18,-0.24,-0.29,-0.35,-0.41,-0.47,-0.52,-0.57,-0.62,-0.67,-0.71,-0.76,-0.8,-0.83,-0.87,-0.9,-0.92,-0.95,-0.965,-0.98,-0.991,-0.998,-1
|
||||
PARAM_HAIR_SIDE=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_R_ANGLE=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_BROW_R_FORM=0
|
||||
PARAM_TERE=0
|
||||
PARAM_EYE_BALL_GLITTER=0
|
||||
PARAM_STRING=0
|