first commit

This commit is contained in:
2026-01-07 16:24:34 +00:00
commit 5c1399bb96
362 changed files with 59794 additions and 0 deletions

View File

@@ -0,0 +1,480 @@
.aplayer.aplayer-fixed {
left: unset !important;
right: 2rem !important;
bottom: 2rem !important;
color: #000;
width: 100%;
background: transparent !important;
box-shadow: none !important;
transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* 展开状态时始终显示背景(包括 local 模式和 meting 模式) */
.aplayer.aplayer-fixed:not(.aplayer-narrow) {
background: var(--card-bg, white) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
}
.aplayer.aplayer-fixed:not(.aplayer-narrow) .aplayer-body {
background: var(--card-bg, white) !important;
}
/* 暗色主题:展开状态时显示背景 */
:root.dark .aplayer.aplayer-fixed:not(.aplayer-narrow) {
background: var(--card-bg, oklch(0.23 0.015 var(--hue))) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.4) !important;
}
:root.dark .aplayer.aplayer-fixed:not(.aplayer-narrow) .aplayer-body {
background: var(--card-bg, oklch(0.23 0.015 var(--hue))) !important;
}
/* 收缩状态下鼠标悬浮时显示背景 */
.aplayer.aplayer-fixed.aplayer-narrow:hover {
background: var(--card-bg, white) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
}
/* 暗色主题悬浮效果 */
:root.dark .aplayer.aplayer-fixed.aplayer-narrow:hover {
background: var(--card-bg, oklch(0.23 0.015 var(--hue))) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.4) !important;
}
:root.dark .aplayer.aplayer-fixed {
color: var(--btn-content, oklch(0.75 0.1 var(--hue)));
}
.aplayer.aplayer-fixed .aplayer-body {
left: unset !important;
right: 2rem !important;
width: 400px !important;
bottom: 2rem !important;
max-width: calc(100% - 18px);
padding-right: 0 !important;
background: transparent !important;
transition: background 0.3s ease;
}
.aplayer.aplayer-fixed .aplayer-miniswitcher {
right: unset;
left: -18px;
transform: rotate(180deg);
opacity: 0;
transition: opacity 0.2s ease;
}
/* 触摸设备:始终显示 miniswitcher 和背景 */
@media (hover: none) and (pointer: coarse) {
.aplayer.aplayer-fixed .aplayer-miniswitcher {
display: block;
opacity: 1;
/* 触摸设备上半透明背景 */
background: rgba(200, 200, 200, 0.5) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
/* 触摸设备暗色主题:半透明背景 */
:root.dark .aplayer.aplayer-fixed .aplayer-miniswitcher {
background: rgba(100, 100, 100, 0.5) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
/* 触摸设备上始终显示背景 */
.aplayer.aplayer-fixed {
background: var(--card-bg, white) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
}
:root.dark .aplayer.aplayer-fixed {
background: var(--card-bg, oklch(0.23 0.015 var(--hue))) !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.4) !important;
}
}
/* 非触摸设备:默认隐藏,悬停时显示 */
@media (hover: hover) {
.aplayer.aplayer-fixed .aplayer-miniswitcher {
display: none;
}
/* 鼠标悬停在播放器上时显示 miniswitcher */
.aplayer.aplayer-fixed:hover .aplayer-miniswitcher {
display: block;
opacity: 1;
}
/* 收起状态下也支持悬停显示 */
.aplayer.aplayer-fixed.aplayer-narrow:hover .aplayer-miniswitcher {
display: block;
opacity: 1;
}
/* 列表展开状态时始终显示收缩按钮 */
.aplayer.aplayer-fixed.aplayer-withlist:not(.aplayer-narrow) .aplayer-miniswitcher {
display: block !important;
opacity: 1 !important;
}
}
/* 禁用初始化时的过渡动画,只在加载完成后恢复 */
.aplayer.aplayer-fixed:not([data-initialized="true"]) .aplayer-body {
transition: none !important;
}
.aplayer.aplayer-fixed:not([data-initialized="true"]) .aplayer-info {
transition: none !important;
}
/* 缩小状态下禁用所有过渡动画 */
.aplayer.aplayer-narrow .aplayer-body {
transition: none !important;
}
.aplayer.aplayer-narrow .aplayer-info {
transition: none !important;
}
/* ===== 移动端适配 ===== */
@media (max-width: 768px) {
.aplayer.aplayer-fixed {
right: 0 !important;
bottom: 0rem !important;
}
.aplayer.aplayer-fixed .aplayer-body {
right: 0 !important;
bottom: 0rem !important;
}
}
/* ===== 平板适配 ===== */
@media (min-width: 641px) and (max-width: 1280px) {
.aplayer.aplayer-fixed {
right: 0.5rem !important;
bottom: 2rem !important;
}
.aplayer.aplayer-fixed .aplayer-body {
right: 0.5rem !important;
bottom: 2rem !important;
}
}
/* 横屏模式适配 */
@media (orientation: landscape) and (max-height: 640px) {
.aplayer.aplayer-fixed {
right: 0.5rem !important;
bottom: 2rem !important;
}
.aplayer.aplayer-fixed .aplayer-body {
right: 0.5rem !important;
bottom: 2rem !important;
}
}
/* ===== 封面播放特效 ===== */
/* 封面基础样式 - 默认正方形(触摸设备) */
.aplayer .aplayer-pic {
transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
overflow: hidden;
position: relative;
aspect-ratio: 1;
}
/* 确保封面图片适配 */
.aplayer .aplayer-pic img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 桌面端:圆形封面 */
@media (hover: hover) {
.aplayer .aplayer-pic {
border-radius: 50%;
}
.aplayer .aplayer-pic img {
border-radius: 50%;
}
}
/* 缩小状态下禁用过渡动画 */
.aplayer.aplayer-narrow .aplayer-pic {
transition: none !important;
}
/* 旋转动画关键帧 */
@keyframes aplayer-cover-rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* 亮色主题脉动动画 */
@keyframes aplayer-cover-pulse {
0%, 100% {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
50% {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
}
/* 暗色主题脉动动画 */
@keyframes aplayer-cover-pulse-dark {
0%, 100% {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
50% {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
}
/* 桌面端:播放状态旋转动画 */
@media (hover: hover) {
/* 始终应用旋转动画,但通过 animation-play-state 控制播放/暂停 */
.aplayer .aplayer-pic {
animation: aplayer-cover-rotate 20s linear infinite,
aplayer-cover-pulse 2s ease-in-out infinite;
animation-play-state: paused;
}
/* 播放状态:恢复动画 */
.aplayer[data-playing="true"] .aplayer-pic,
.aplayer.aplayer-playing .aplayer-pic {
animation-play-state: running;
}
/* 暂停状态:暂停动画(保持当前位置) */
.aplayer[data-playing="false"] .aplayer-pic,
.aplayer.aplayer-pause .aplayer-pic {
animation-play-state: paused;
}
/* 暗色主题下的播放特效 */
:root.dark .aplayer[data-playing="true"] .aplayer-pic,
:root.dark .aplayer.aplayer-playing .aplayer-pic {
animation: aplayer-cover-rotate 20s linear infinite,
aplayer-cover-pulse-dark 2s ease-in-out infinite;
animation-play-state: running;
}
/* 暗色主题暂停状态 */
:root.dark .aplayer[data-playing="false"] .aplayer-pic,
:root.dark .aplayer.aplayer-pause .aplayer-pic {
animation: aplayer-cover-rotate 20s linear infinite,
aplayer-cover-pulse-dark 2s ease-in-out infinite;
animation-play-state: paused;
}
}
/* 触摸设备:无旋转动画,保持静态 */
@media (hover: none) and (pointer: coarse) {
.aplayer .aplayer-pic {
animation: none !important;
}
.aplayer[data-playing="true"] .aplayer-pic,
.aplayer.aplayer-playing .aplayer-pic,
.aplayer[data-playing="false"] .aplayer-pic,
.aplayer.aplayer-pause .aplayer-pic {
animation: none !important;
animation-play-state: paused !important;
}
}
/* 桌面端:播放时隐藏暂停按钮,暂停时显示播放按钮 */
@media (hover: hover) {
/* 播放状态时隐藏暂停按钮(封面在转,不需要暂停按钮) */
.aplayer[data-playing="true"] .aplayer-pic .aplayer-pause,
.aplayer.aplayer-playing .aplayer-pic .aplayer-pause {
display: none !important;
}
/* 播放状态时隐藏播放按钮(因为已经播放了) */
.aplayer[data-playing="true"] .aplayer-pic .aplayer-play,
.aplayer.aplayer-playing .aplayer-pic .aplayer-play {
display: none !important;
}
/* 暂停状态时隐藏暂停按钮,只显示播放按钮 */
.aplayer[data-playing="false"] .aplayer-pic .aplayer-pause,
.aplayer.aplayer-pause .aplayer-pic .aplayer-pause,
.aplayer:not([data-playing="true"]):not(.aplayer-playing) .aplayer-pic .aplayer-pause {
display: none !important;
}
/* 暂停状态时显示播放按钮(通过悬停显示) */
.aplayer[data-playing="false"] .aplayer-pic:hover .aplayer-play,
.aplayer.aplayer-pause .aplayer-pic:hover .aplayer-play,
.aplayer:not([data-playing="true"]):not(.aplayer-playing) .aplayer-pic:hover .aplayer-play {
display: block !important;
}
}
/* ===== 亮色主题适配 ===== */
/* ===== 暗色主题适配 ===== */
:root.dark .aplayer {
background: var(--card-bg, oklch(0.23 0.015 var(--hue)));
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.4);
}
:root.dark .aplayer.aplayer-withlist .aplayer-info {
border-bottom: 1px solid var(--line-divider, rgba(255, 255, 255, 0.08));
}
:root.dark .aplayer.aplayer-fixed .aplayer-list {
border: 1px solid var(--line-divider, rgba(255, 255, 255, 0.08));
border-bottom: none;
}
:root.dark .aplayer.aplayer-fixed .aplayer-body {
background: var(--card-bg, oklch(0.23 0.015 var(--hue)));
}
:root.dark .aplayer.aplayer-fixed .aplayer-lrc {
text-shadow: -1px -1px 0 var(--card-bg, oklch(0.23 0.015 var(--hue)));
}
:root.dark .aplayer.aplayer-fixed .aplayer-info {
border-top: 1px solid var(--line-divider, rgba(255, 255, 255, 0.08));
}
:root.dark .aplayer .aplayer-info .aplayer-music .aplayer-author {
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark
.aplayer
.aplayer-info
.aplayer-controller
.aplayer-bar-wrap
.aplayer-bar {
background: rgba(255, 255, 255, 0.2);
}
:root.dark
.aplayer
.aplayer-info
.aplayer-controller
.aplayer-bar-wrap
.aplayer-bar
.aplayer-loaded {
background: rgba(255, 255, 255, 0.3);
}
:root.dark .aplayer .aplayer-info .aplayer-controller .aplayer-time {
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark
.aplayer
.aplayer-info
.aplayer-controller
.aplayer-time
.aplayer-icon
path {
fill: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark
.aplayer
.aplayer-info
.aplayer-controller
.aplayer-time
.aplayer-icon:hover
path {
fill: var(--btn-content, oklch(0.75 0.1 var(--hue)));
}
:root.dark
.aplayer
.aplayer-info
.aplayer-controller
.aplayer-volume-wrap
.aplayer-volume-bar-wrap
.aplayer-volume-bar {
background: rgba(255, 255, 255, 0.2);
}
:root.dark .aplayer .aplayer-lrc:before {
background: linear-gradient(
180deg,
var(--card-bg, oklch(0.23 0.015 var(--hue))) 0,
hsla(0, 0%, 100%, 0)
);
}
:root.dark .aplayer .aplayer-lrc:after {
background: linear-gradient(
180deg,
hsla(0, 0%, 100%, 0) 0,
rgba(255, 255, 255, 0.1)
);
}
:root.dark .aplayer .aplayer-lrc p {
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark .aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
}
:root.dark .aplayer .aplayer-list ol::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}
:root.dark .aplayer .aplayer-list ol li {
border-top: 1px solid var(--line-divider, rgba(255, 255, 255, 0.08));
}
:root.dark .aplayer .aplayer-list ol li:hover {
background: var(--btn-plain-bg-hover, oklch(0.3 0.035 var(--hue)));
}
:root.dark .aplayer .aplayer-list ol li.aplayer-list-light {
background: var(--btn-plain-bg-hover, oklch(0.3 0.035 var(--hue)));
}
:root.dark .aplayer .aplayer-list ol li .aplayer-list-index {
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark .aplayer .aplayer-list ol li .aplayer-list-author {
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark .aplayer .aplayer-notice {
background-color: var(--card-bg, oklch(0.23 0.015 var(--hue)));
color: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark .aplayer .aplayer-miniswitcher {
background: var(--btn-regular-bg, oklch(0.33 0.035 var(--hue)));
border-top: 1px solid var(--line-divider, #e5e7eb);
border-bottom: 1px solid var(--line-divider, #e5e7eb);
border-left: 1px solid var(--line-divider, #e5e7eb);
}
:root.dark .aplayer .aplayer-miniswitcher .aplayer-icon path {
fill: var(--content-meta, rgba(255, 255, 255, 0.6));
}
:root.dark .aplayer .aplayer-miniswitcher .aplayer-icon:hover path {
fill: var(--btn-content, oklch(0.75 0.1 var(--hue)));
}
:root.dark .aplayer .aplayer-info .aplayer-music .aplayer-title {
color: var(--btn-content, oklch(0.75 0.1 var(--hue)));
}
:root.dark .aplayer .aplayer-list ol li .aplayer-list-title {
color: var(--btn-content, oklch(0.75 0.1 var(--hue)));
}

3
public/assets/css/APlayer.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
Theme: GitHub Dark
Description: Dark theme as seen on github.com
Author: github.com
Maintainer: @Hirse
Updated: 2021-05-15
Outdated base version: https://github.com/primer/github-syntax-dark
Current colors taken from GitHub's CSS
*/.hljs{color:#c9d1d9;background:#0d1117}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#79c0ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-code,.hljs-comment,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c}

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

2
public/assets/js/APlayer.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1213
public/assets/js/highlight.min.js vendored Normal file

File diff suppressed because one or more lines are too long

74
public/assets/js/marked.min.js vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 B

135
public/pio/README.md Normal file
View File

@@ -0,0 +1,135 @@
# Spine 看板娘功能使用指南
## 功能说明
此功能为博客添加了一个可配置的 Spine 动画看板娘,可以显示在页面的角落位置。
## 配置选项
`src/config.ts` 文件中的 `spineModelConfig` 对象包含以下配置选项:
```typescript
export const spineModelConfig: SpineModelConfig = {
enable: false, // 是否启用看板娘(默认关闭)
model: {
path: "/pio/models/shizuku/shizuku.model.json", // 模型文件路径
scale: 1.0, // 模型缩放比例
x: 0, // X轴偏移
y: 0, // Y轴偏移
},
position: {
corner: "bottom-right", // 显示位置: "bottom-left" | "bottom-right" | "top-left" | "top-right"
offsetX: 20, // 距离边缘的X轴偏移像素
offsetY: 20, // 距离边缘的Y轴偏移像素
},
size: {
width: 280, // 容器宽度(像素)
height: 400, // 容器高度(像素)
},
interactive: {
enabled: true, // 是否启用交互功能
clickAnimation: "tap_body", // 点击时播放的动画名称
idleAnimations: ["idle"], // 待机动画列表
idleInterval: 10000, // 待机动画切换间隔(毫秒)
},
responsive: {
hideOnMobile: true, // 是否在移动端隐藏
mobileBreakpoint: 768, // 移动端断点(像素)
},
zIndex: 1000, // CSS 层级
opacity: 1.0, // 透明度0.0-1.0
};
```
## 文件结构要求
要使用此功能,您需要准备以下文件:
### 1. Spine 运行时库
将 Spine 运行时 JavaScript 文件放置在:
- `public/pio/static/spine-player.js`
您可以从以下来源获取:
- [Spine官方运行时](http://esotericsoftware.com/spine-runtimes)
- [spine-ts运行时](https://github.com/EsotericSoftware/spine-runtimes/tree/4.1/spine-ts)
### 2. Spine 模型文件
将您的 Spine 模型文件放置在:
- `public/pio/models/[模型名称]/`
每个模型需要包含以下文件:
- `[模型名称].json` - Spine 骨骼数据文件
- `[模型名称].atlas` - 纹理图集文件
- `[模型名称].png` - 纹理图像文件
例如,对于默认的 shizuku 模型:
- `public/pio/models/shizuku/shizuku.json`
- `public/pio/models/shizuku/shizuku.atlas`
- `public/pio/models/shizuku/shizuku.png`
## 启用步骤
1. **准备 Spine 文件**:将必要的文件按照上述结构放置在 `public/pio/` 目录中
2. **修改配置**:在 `src/config.ts` 中将 `spineModelConfig.enable` 设置为 `true`
3. **自定义设置**:根据您的需求调整其他配置选项
4. **测试功能**:重新构建并启动项目,查看看板娘是否正常显示
## 动画配置
### 点击动画
设置 `clickAnimation` 为您模型中存在的动画名称,用户点击看板娘时会播放此动画。
### 待机动画
`idleAnimations` 数组中添加多个动画名称,系统会按照设定的间隔随机播放这些动画。
### 常见动画名称参考
- `idle` - 待机动画
- `tap_body` - 点击身体
- `tap_head` - 点击头部
- `shake` - 摇摆动画
- `flick_head` - 轻拍头部
(具体动画名称取决于您的 Spine 模型文件)
## 响应式设计
- 默认在移动端隐藏看板娘以提高性能
- 可以通过 `hideOnMobile``mobileBreakpoint` 配置响应式行为
- 支持窗口大小变化时的动态显示/隐藏
## 故障排除
### 看板娘不显示
1. 检查 `enable` 是否设置为 `true`
2. 确认模型文件路径是否正确
3. 检查浏览器控制台是否有错误信息
4. 验证 Spine 运行时文件是否正确加载
### 动画不播放
1. 检查动画名称是否与模型文件中的动画匹配
2. 确认模型文件是否包含所需的动画数据
3. 查看浏览器控制台的错误信息
### 位置或大小问题
1. 调整 `position.offsetX``position.offsetY` 来微调位置
2. 修改 `size.width``size.height` 来调整容器大小
3. 使用 `model.scale` 来缩放模型本身
## 注意事项
- Spine 模型文件可能较大,建议优化文件大小以提高加载速度
- 在移动端默认隐藏以节省带宽和提高性能
- 确保您有使用 Spine 模型的适当许可证
- 某些浏览器可能需要用户交互后才能播放动画
## 获取 Spine 模型
您可以从以下渠道获取或制作 Spine 模型:
- [Spine官方网站](http://esotericsoftware.com/)
- 各种开源 Live2D/Spine 模型资源
- 自制或委托制作
请确保您有合法使用权限的模型文件。

Binary file not shown.

View File

@@ -0,0 +1,40 @@
{
"version": "1.0.0",
"model": "illyasviel.moc",
"textures": [
"textures/texture_00.png"
],
"layout": {
"center_x":0.0,
"center_y": -0.5,
"width": 3.5
},
"hit_areas_custom": {
"head_x": [-0.15, 0.6],
"head_y": [0.15, 0.2],
"body_x": [-0.3, -0.25],
"body_y": [0.2, -0.9]
},
"motions": {
"idle": [
{"file":"motions/Ylia_01.mtn"},
{"file":"motions/Ylia_02.mtn"},
{"file":"motions/Ylia_07.mtn"},
{"file":"motions/Ylia_08.mtn"}
],
"sleepy": [
{"file":"motions/Ylia_03.mtn"}
],
"flick_head": [
{"file":"motions/Ylia_15.mtn"}
],
"tap_body": [
{"file":"motions/Ylia_04.mtn"},
{"file":"motions/Ylia_05.mtn"},
{"file":"motions/Ylia_06.mtn"},
{"file":"motions/Ylia_11.mtn"},
{"file":"motions/Ylia_12.mtn"},
{"file":"motions/Ylia_14.mtn"}
]
}
}

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.12,-0.44,-0.94,-1.56,-2.25,-3,-3.75,-4.44,-5.06,-5.56,-5.88,-6,-5.17,-3.17,-0.5,2.17,4.17,5,4.99,4.96,4.92,4.86,4.79,4.7,4.6,4.49,4.36,4.23,4.08,3.93,3.76,3.59,3.4,3.21,3,2.77,2.56,2.35,2.16,1.97,1.79,1.62,1.46,1.31,1.17,1.03,0.91,0.79,0.68,0.59,0.5,0.41,0.34,0.27,0.21,0.16,0.12,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
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.03,-3.74,-7.65,-12.12,-16.75,-21.08,-24.77,-27.6,-29.37,-30,-25.49,-14.55,0,14.55,25.49,30,29.48,28.1,25.99,23.37,20.34,17.03,13.5,9.98,6.39,3,-0.23,-3.19,-5.81,-7.95,-9.59,-10.63,-11,-10.28,-8.72,-6.78,-4.76,-2.92,-1.39,-0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_ANGLE_Z=0,0.012,0.05,0.1,0.18,0.28,0.4,0.54,0.7,0.87,1.07,1.28,1.51,1.75,2.01,2.29,2.57,2.88,3.19,3.52,3.85,4.2,4.56,4.92,5.3,5.69,6.08,6.48,6.89,7.3,7.72,8.14,8.56,9,9.43,9.86,10.29,10.73,11.16,11.6,12.03,12.46,12.89,13.32,13.75,14.17,14.58,14.99,15.39,15.79,16.18,16.56,16.94,17.31,17.66,18.01,18.34,18.67,18.98,19.28,19.57,19.85,20.11,20.35,20.58,20.8,21,21.18,21.35,21.5,21.63,21.74,21.83,21.9,21.96,21.99,22,21.86,21.46,20.82,20.01,19.01,17.9,16.67,15.37,14,12.61,11.18,9.76,8.38,7.02,5.75,4.56,3.46,2.48,1.64,0.95,0.43,0.11,0
PARAM_EYE_L_OPEN=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.09,0.31,0.6,0.89,1.11,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,0.99,0.64,0.32,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.09,0.31,0.6,0.89,1.11,1.2,1.197,1.191,1.18,1.168,1.153,1.137,1.12,1.102,1.085,1.068,1.053,1.038,1.025,1.015,1.007,1.002,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0.48,0.68,0.75,0.75,0.75,0.75,0.69,0.56,0.38,0.19,0.06,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,1,1,1,1,1,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.987,0.95,0.9,0.84,0.76,0.68,0.6,0.51,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0
PARAM_EYE_R_OPEN=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.09,0.31,0.6,0.89,1.11,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,0.99,0.64,0.32,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.09,0.31,0.6,0.89,1.11,1.2,1.197,1.191,1.18,1.168,1.153,1.137,1.12,1.102,1.085,1.068,1.053,1.038,1.025,1.015,1.007,1.002,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0.48,0.68,0.75,0.75,0.75,0.75,0.69,0.56,0.38,0.19,0.06,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,1,1,1,1,1,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.987,0.95,0.9,0.84,0.76,0.68,0.6,0.51,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5
PARAM_BROW_L_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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,0.97,0.87,0.74,0.58,0.42,0.26,0.13,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
PARAM_BROW_R_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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,0.97,0.87,0.74,0.58,0.42,0.26,0.13,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
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0
PARAM_BROW_R_ANGLE=0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,-0.05,-0.18,-0.35,-0.52,-0.65,-0.7,-0.34,0.24,0.64,0.77,0.64,0.43,0.2,0.01,-0.13,-0.24,-0.33,-0.4,-0.45,-0.49,-0.52,-0.531,-0.538,-0.54,-0.528,-0.49,-0.43,-0.35,-0.24,-0.13,0,0.27,0.54,0.73,0.83,0.93,0.97,0.991,0.999,1,1,1,1,1,1,1,1,1,1,1,0.93,0.81,0.74,0.71,0.712,0.717,0.726,0.738,0.751,0.767,0.785,0.803,0.823,0.842,0.863,0.882,0.901,0.92,0.937,0.952,0.966,0.978,0.987,0.994,0.999,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_MOUTH_OPEN_Y=0,0.08,0.26,0.5,0.74,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,0.81,0.51,0.3,0.23,0.231,0.233,0.236,0.242,0.25,0.8,1,1,1,1,1,1,1,1,1,1,0.994,0.97,0.92,0.7,0.44,0.22,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_X=0,0,0,0,0,0,0,-0.34,-1.25,-2.55,-4.04,-5.58,-7.03,-8.26,-9.2,-9.79,-10,-9.85,-9.45,-8.83,-8.06,-7.17,-6.2,-5.17,-4.14,-3.09,-2.1,-1.15,-0.29,0.48,1.11,1.59,1.89,2,1.93,1.75,1.48,1.16,0.84,0.52,0.25,0.07,0,0.005,0.021,0.05,0.08,0.12,0.17,0.23,0.3,0.36,0.44,0.52,0.6,0.68,0.77,0.86,0.94,1.03,1.12,1.21,1.29,1.38,1.46,1.53,1.61,1.68,1.74,1.8,1.85,1.89,1.93,1.96,1.98,1.995,2,1.987,1.95,1.89,1.82,1.73,1.63,1.52,1.4,1.27,1.15,1.02,0.89,0.76,0.64,0.52,0.41,0.31,0.23,0.15,0.09,0.04,0.01,0
PARAM_BODY_ANGLE_Z=0,0,0,0,0,0,0,-0.1,-0.37,-0.76,-1.21,-1.68,-2.11,-2.48,-2.76,-2.94,-3,-2.994,-2.976,-2.95,-2.91,-2.86,-2.8,-2.74,-2.67,-2.59,-2.5,-2.41,-2.31,-2.21,-2.11,-2,-1.88,-1.77,-1.65,-1.53,-1.41,-1.29,-1.16,-1.04,-0.92,-0.8,-0.68,-0.56,-0.44,-0.33,-0.21,-0.11,0,0.11,0.21,0.3,0.38,0.46,0.53,0.59,0.65,0.7,0.75,0.79,0.82,0.86,0.88,0.91,0.927,0.944,0.958,0.969,0.979,0.986,0.991,0.995,0.997,0.999,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,76 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.81,-2.55,-4.73,-6.99,-9.05,-10.76,-11.9,-12.32,-12.18,-11.78,-11.17,-10.36,-9.43,-8.38,-7.28,-6.15,-5.03,-3.92,-2.87,-1.89,-1,0,0.77,1.35,1.83,2.24,2.62,3,3.51,3.96,4.36,4.72,5.02,5.28,5.49,5.66,5.79,5.88,5.95,5.99,6,5.97,5.88,5.75,5.57,5.36,5.11,4.83,4.54,4.22,3.89,3.56,3.22,2.87,2.53,2.2,1.87,1.57,1.28,1,0.76,0.54,0.36,0.21,0.09,0.02,0
PARAM_ANGLE_Y=0,-0.72,-2.28,-4.22,-6.24,-8.08,-9.61,-10.62,-11,-10.83,-10.22,-9.14,-7.53,-5.43,-2.9,0,4.22,8.13,11.82,15.25,18.32,21.1,23.49,25.5,27.13,28.4,29.3,29.83,30,29.04,26.47,22.61,17.76,12.4,6.7,1.11,-4.12,-8.75,-12.63,-15.55,-17.38,-18,-17.91,-17.65,-17.25,-16.71,-16.07,-15.32,-14.5,-13.61,-12.67,-11.68,-10.68,-9.65,-8.6,-7.59,-6.6,-5.62,-4.71,-3.83,-3.01,-2.28,-1.63,-1.07,-0.62,-0.28,-0.07,0
PARAM_ANGLE_Z=0,-1.07,-3.45,-6.54,-9.91,-13.24,-16.35,-18.98,-21,-22.87,-24.44,-25.76,-26.85,-27.73,-28.43,-28.96,-29.35,-29.63,-29.82,-29.93,-29.98,-30,-29.64,-28.6,-27.05,-25.02,-22.64,-19.94,-17.06,-14.06,-10.97,-7.83,-4.78,-1.81,1.02,3.6,5.98,8.01,9.68,10.92,11.72,12,11.94,11.77,11.5,11.14,10.72,10.22,9.66,9.07,8.45,7.79,7.12,6.43,5.74,5.06,4.4,3.75,3.14,2.55,2.01,1.52,1.09,0.71,0.41,0.19,0.05,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,0.74,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.26,0.5,0.74,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.995,0.981,0.96,0.93,0.89,0.85,0.81,0.76,0.7,0.65,0.59,0.54,0.48,0.42,0.37,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,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,0.74,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.26,0.5,0.74,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.995,0.981,0.96,0.93,0.89,0.85,0.81,0.76,0.7,0.65,0.59,0.54,0.48,0.42,0.37,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5,-0.499,-0.496,-0.492,-0.486,-0.478,-0.469,-0.458,-0.447,-0.434,-0.421,-0.406,-0.391,-0.375,-0.359,-0.342,-0.324,-0.307,-0.289,-0.27,-0.252,-0.234,-0.216,-0.198,-0.181,-0.163,-0.147,-0.13,-0.114,-0.099,-0.085,-0.072,-0.059,-0.047,-0.037,-0.028,-0.02,-0.013,-0.007,-0.003,-0.001,0,-0.003,-0.01,-0.021,-0.036,-0.054,-0.07,-0.1,-0.12,-0.15,-0.18,-0.2,-0.23,-0.26,-0.29,-0.32,-0.34,-0.37,-0.39,-0.42,-0.437,-0.455,-0.47,-0.483,-0.492,-0.498,-0.5
PARAM_BROW_L_Y=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.51,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.69,-0.57,-0.37,-0.18,-0.05,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.16,-0.44,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.49,-0.32,-0.16,-0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0
PARAM_BROW_R_ANGLE=0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,-0.05,-0.18,-0.33,-0.48,-0.6,-0.67,-0.7,-0.34,0.24,0.64,0.77,0.61,0.35,0.11,-0.06,-0.13,-0.13,-0.13,-0.13,-0.13,-0.13,-0.13,-0.112,-0.07,0,0.31,0.68,0.92,1,1,1,1,0.993,0.981,0.971,0.963,0.96,0.97,0.986,0.996,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.88,0.75,0.6,0.44,0.3,0.17,0.08,0.02,0
PARAM_MOUTH_OPEN_Y=0,0.07,0.25,0.47,0.68,0.85,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0.24,0.64,0.91,1,0.8,0.45,0.25,0.33,0.46,0.59,0.68,0.73,0.747,0.751,0.751,0.75,0.741,0.71,0.67,0.62,0.56,0.49,0.42,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0
PARAM_BODY_ANGLE_X=0,-0.14,-0.51,-1.04,-1.67,-2.33,-2.96,-3.49,-3.86,-4,-3.95,-3.81,-3.59,-3.3,-2.98,-2.61,-2.24,-1.86,-1.49,-1.14,-0.82,-0.54,-0.31,-0.14,-0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0
PARAM_EYE_FORM=0
PARAM_EYE_BALL_FORM=1,0.998,0.992,0.983,0.971,0.956,0.937,0.92,0.89,0.87,0.84,0.81,0.78,0.75,0.72,0.68,0.65,0.61,0.58,0.54,0.5,0.47,0.43,0.4,0.36,0.33,0.29,0.26,0.23,0.2,0.17,0.14,0.12,0.09,0.074,0.056,0.039,0.025,0.015,0.007,0.002,0,0.005,0.019,0.04,0.07,0.11,0.15,0.19,0.24,0.3,0.35,0.41,0.46,0.52,0.58,0.63,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984,0.996,1
PARAM_CHEEK_01=0,0.002,0.008,0.017,0.03,0.045,0.063,0.08,0.11,0.13,0.15,0.18,0.21,0.23,0.26,0.29,0.31,0.34,0.36,0.39,0.41,0.428,0.446,0.462,0.475,0.486,0.493,0.498,0.5,0.499,0.496,0.492,0.485,0.477,0.468,0.457,0.446,0.432,0.418,0.403,0.387,0.37,0.353,0.335,0.317,0.298,0.279,0.26,0.24,0.221,0.202,0.183,0.165,0.147,0.13,0.113,0.097,0.082,0.068,0.054,0.043,0.032,0.023,0.015,0.008,0.004,0.001,0
PARAM_UPBACK=0
PARAM_HAIR_TAIR=0
PARAM_ARM01=0,-0.03,-0.1,-0.2,-0.34,-0.49,-0.65,-0.81,-0.96,-1.1,-1.2,-1.27,-1.3,-1.27,-1.21,-1.11,-0.99,-0.87,-0.75,-0.65,-0.59,-0.56,-0.56,-0.563,-0.572,-0.589,-0.62,-0.66,-0.72,-0.8,-0.9,-1.04,-1.19,-1.32,-1.46,-1.58,-1.69,-1.79,-1.87,-1.93,-1.97,-1.98,-1.97,-1.94,-1.9,-1.84,-1.77,-1.69,-1.59,-1.5,-1.39,-1.28,-1.17,-1.06,-0.95,-0.84,-0.73,-0.62,-0.52,-0.42,-0.33,-0.25,-0.18,-0.12,-0.07,-0.03,-0.01,0
PARAM_RARM02=0,-0.23,-0.72,-1.35,-2.02,-2.65,-3.21,-3.64,-3.9,-4.05,-4.1,-4.14,-4.18,-4.27,-4.35,-4.42,-4.5,-4.56,-4.63,-4.68,-4.74,-4.79,-4.83,-4.87,-4.9,-4.93,-4.96,-4.975,-4.989,-4.997,-5,-5,-4.996,-4.985,-4.966,-4.93,-4.89,-4.83,-4.75,-4.66,-4.54,-4.4,-4.2,-3.95,-3.66,-3.34,-3.01,-2.66,-2.31,-1.97,-1.64,-1.33,-1.05,-0.79,-0.57,-0.4,-0.26,-0.17,-0.1,-0.05,-0.02,0,0.009,0.01,0.008,0.005,0.001,0
PARAM_RARM03=0,0.22,0.57,0.9,1.14,1.23,1.12,0.86,0.49,0.07,-0.38,-0.81,-1.22,-1.57,-1.85,-2.03,-2.1,-2,-1.75,-1.37,-0.93,-0.47,-0.03,0.35,0.6,0.7,0.62,0.41,0.12,-0.21,-0.55,-0.89,-1.22,-1.49,-1.71,-1.85,-1.9,-1.894,-1.876,-1.85,-1.81,-1.76,-1.7,-1.64,-1.57,-1.49,-1.41,-1.32,-1.24,-1.15,-1.05,-0.96,-0.87,-0.78,-0.69,-0.6,-0.52,-0.44,-0.36,-0.29,-0.23,-0.17,-0.12,-0.08,-0.05,-0.02,-0.005,0
PARAM_LARM01=0,0.019,0.07,0.16,0.26,0.39,0.53,0.68,0.82,0.97,1.11,1.24,1.34,1.43,1.48,1.5,1.46,1.36,1.22,1.05,0.88,0.71,0.56,0.46,0.43,0.426,0.426,0.426,0.426,0.426,0.427,0.428,0.431,0.434,0.46,0.51,0.58,0.65,0.74,0.81,0.89,0.95,1,1.04,1.048,1.041,1.022,0.99,0.95,0.91,0.85,0.79,0.73,0.67,0.6,0.53,0.47,0.4,0.33,0.27,0.22,0.16,0.12,0.08,0.05,0.02,0.005,0
PARAM_LARM02=0,0.17,0.63,1.3,2.09,2.91,3.7,4.37,4.83,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.999,4.997,4.994,4.99,4.984,4.977,4.969,4.958,4.945,4.93,4.913,4.894,4.87,4.85,4.82,4.75,4.61,4.4,4.15,3.85,3.53,3.19,2.83,2.48,2.12,1.79,1.47,1.17,0.92,0.69,0.51,0.35,0.23,0.14,0.08,0.04,0.01,0.002,0,0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.18,-0.54,-0.98,-1.47,-2,-2.73,-3.48,-4.23,-4.99,-5.73,-6.45,-7.13,-7.75,-8.32,-8.84,-9.3,-9.68,-10,-10.34,-10.65,-10.94,-11.2,-11.44,-11.65,-11.84,-12.01,-12.17,-12.31,-12.43,-12.54,-12.63,-12.71,-12.78,-12.84,-12.88,-12.92,-12.95,-12.97,-12.989,-12.997,-13,-12.76,-12.08,-11.02,-9.68,-8.09,-6.37,-4.55,-2.7,-0.85,1,3.22,5.04,6.52,7.65,8.52,9.14,9.56,9.82,9.96,10,9.91,9.67,9.3,8.81,8.25,7.6,6.92,6.21,5.47,4.72,4,3.29,2.61,2,1.43,0.95,0.55,0.26,0.07,0
PARAM_ANGLE_Y=0,-3.4,-8.83,-13.91,-17.57,-19,-18.02,-15.4,-11.45,-6.51,-1.03,4.78,10.49,15.83,20.55,24.52,27.5,29.36,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.75,25.41,20.45,14.56,8.12,1.7,-4.37,-9.79,-14.35,-18,-21.65,-24.43,-26.51,-27.95,-28.92,-29.5,-29.82,-29.96,-30,-30,-29.74,-29,-27.89,-26.44,-24.74,-22.81,-20.75,-18.62,-16.4,-14.17,-11.99,-9.86,-7.84,-6,-4.3,-2.85,-1.66,-0.77,-0.2,0
PARAM_ANGLE_Z=0,0.27,0.97,2.05,3.4,4.95,6.64,8.45,10.25,12.09,13.83,15.48,17,18.34,19.44,20.28,20.81,21,20.984,20.94,20.86,20.76,20.62,20.47,20.28,20.07,19.84,19.58,19.3,19.01,18.69,18.35,18,17.63,17.25,16.84,16.43,16.01,15.57,15.12,14.67,14.2,13.73,13.25,12.78,12.28,11.8,11.3,10.81,10.32,9.82,9.33,8.85,8.36,7.88,7.4,6.93,6.47,6.02,5.57,5.14,4.72,4.31,3.91,3.53,3.16,2.81,2.48,2.16,1.85,1.58,1.32,1.08,0.86,0.66,0.49,0.34,0.22,0.13,0.06,0.01,0
PARAM_EYE_L_OPEN=1,0.98,0.93,0.85,0.75,0.63,0.51,0.4,0.29,0.19,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,0,0,0,0,0,0,0,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.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1
PARAM_EYE_L_SMILE=0
PARAM_EYE_R_OPEN=1,0.98,0.93,0.85,0.75,0.63,0.51,0.4,0.29,0.19,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,0,0,0,0,0,0,0,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.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1
PARAM_EYE_R_SMILE=0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5
PARAM_BROW_L_Y=0,-0.013,-0.05,-0.1,-0.16,-0.23,-0.31,-0.38,-0.45,-0.51,-0.56,-0.6,-0.62,-0.63,-0.626,-0.616,-0.6,-0.58,-0.55,-0.52,-0.49,-0.45,-0.41,-0.37,-0.33,-0.29,-0.24,-0.2,-0.16,-0.12,-0.09,-0.05,-0.02,0,0.03,0.045,0.059,0.067,0.07,0.065,0.052,0.03,0,-0.03,-0.06,-0.1,-0.15,-0.19,-0.24,-0.28,-0.33,-0.38,-0.42,-0.46,-0.5,-0.54,-0.57,-0.6,-0.62,-0.636,-0.646,-0.65,-0.63,-0.57,-0.48,-0.39,-0.29,-0.19,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_R_Y=0,-0.013,-0.05,-0.1,-0.16,-0.23,-0.31,-0.38,-0.45,-0.51,-0.56,-0.6,-0.62,-0.63,-0.626,-0.616,-0.6,-0.58,-0.55,-0.52,-0.49,-0.45,-0.41,-0.37,-0.33,-0.29,-0.24,-0.2,-0.16,-0.12,-0.09,-0.05,-0.02,0,0.03,0.045,0.059,0.067,0.07,0.066,0.053,0.032,0.01,-0.03,-0.06,-0.1,-0.14,-0.18,-0.23,-0.27,-0.32,-0.36,-0.41,-0.45,-0.48,-0.52,-0.55,-0.58,-0.6,-0.616,-0.626,-0.63,-0.61,-0.55,-0.47,-0.38,-0.28,-0.19,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.008,0.018,0.03,0.046,0.064,0.084,0.11,0.13,0.15,0.18,0.2,0.23,0.25,0.27,0.3,0.32,0.338,0.356,0.372,0.385,0.396,0.403,0.408,0.41,0.407,0.4,0.388,0.373,0.354,0.33,0.31,0.29,0.26,0.23,0.21,0.18,0.16,0.13,0.11,0.08,0.065,0.046,0.03,0.018,0.008,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_R_ANGLE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.008,0.018,0.03,0.046,0.064,0.084,0.11,0.13,0.15,0.18,0.2,0.23,0.25,0.27,0.3,0.32,0.338,0.356,0.372,0.385,0.396,0.403,0.408,0.41,0.407,0.4,0.388,0.373,0.354,0.33,0.31,0.29,0.26,0.23,0.21,0.18,0.16,0.13,0.11,0.08,0.065,0.046,0.03,0.018,0.008,0.002,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,-0.006,-0.023,-0.05,-0.08,-0.11,-0.15,-0.19,-0.22,-0.25,-0.28,-0.294,-0.306,-0.31,-0.309,-0.307,-0.304,-0.299,-0.293,-0.287,-0.279,-0.271,-0.262,-0.252,-0.243,-0.232,-0.222,-0.211,-0.201,-0.19,-0.18,-0.169,-0.159,-0.15,-0.141,-0.132,-0.124,-0.117,-0.11,-0.103,-0.096,-0.09,-0.085,-0.079,-0.074,-0.07,-0.066,-0.061,-0.058,-0.054,-0.05,-0.047,-0.044,-0.04,-0.037,-0.034,-0.031,-0.028,-0.025,-0.021,-0.018,-0.015,-0.011,-0.008,-0.005,-0.004,-0.002,-0.001,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_R_FORM=0,-0.001,-0.005,-0.01,-0.016,-0.023,-0.031,-0.038,-0.045,-0.051,-0.056,-0.06,-0.062,-0.063,-0.063,-0.061,-0.059,-0.055,-0.052,-0.047,-0.042,-0.037,-0.031,-0.025,-0.019,-0.012,-0.006,0,0.006,0.012,0.017,0.022,0.026,0.03,0.034,0.036,0.038,0.04,0.04,0.04,0.04,0.04,0.039,0.039,0.039,0.038,0.038,0.037,0.036,0.035,0.034,0.033,0.032,0.031,0.03,0.028,0.027,0.025,0.023,0.021,0.019,0.017,0.015,0.012,0.01,0.007,0.005,0.003,0.002,0.001,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_MOUTH_FORM=0,0.05,0.16,0.29,0.43,0.56,0.66,0.73,0.76,0.73,0.68,0.61,0.53,0.45,0.38,0.32,0.28,0.25,0.22,0.19,0.17,0.14,0.12,0.1,0.083,0.06,0.04,0.02,-0.01,-0.04,-0.07,-0.1,-0.13,-0.15,-0.18,-0.21,-0.25,-0.28,-0.31,-0.35,-0.38,-0.42,-0.5,-0.61,-0.73,-0.84,-0.93,-0.98,-1,-0.97,-0.87,-0.73,-0.56,-0.37,-0.16,0.04,0.23,0.4,0.54,0.64,0.71,0.73,0.724,0.706,0.68,0.64,0.6,0.56,0.51,0.45,0.4,0.34,0.29,0.24,0.19,0.15,0.1,0.07,0.04,0.02,0.005,0
PARAM_MOUTH_OPEN_Y=0,0.04,0.12,0.22,0.34,0.46,0.58,0.68,0.77,0.86,0.92,0.96,0.98,0.992,0.998,1,1,1,1,1,1,1,1,1,1,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.991,0.97,0.93,0.88,0.82,0.76,0.69,0.63,0.56,0.5,0.45,0.39,0.35,0.3,0.26,0.22,0.18,0.15,0.13,0.1,0.084,0.067,0.052,0.04,0.03,0.021,0.015,0.009,0.006,0.003,0.001,0,0
PARAM_BODY_ANGLE_X=0,-0.009,-0.03,-0.07,-0.13,-0.19,-0.26,-0.33,-0.41,-0.49,-0.57,-0.65,-0.72,-0.79,-0.85,-0.9,-0.94,-0.97,-0.993,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.998,-0.993,-0.985,-0.975,-0.961,-0.945,-0.926,-0.91,-0.88,-0.86,-0.83,-0.8,-0.77,-0.74,-0.71,-0.68,-0.64,-0.61,-0.57,-0.54,-0.5,-0.47,-0.43,-0.4,-0.37,-0.33,-0.3,-0.27,-0.24,-0.21,-0.18,-0.15,-0.13,-0.11,-0.09,-0.066,-0.049,-0.035,-0.023,-0.013,-0.006,-0.001,0
PARAM_BODY_ANGLE_Z=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.99,-9.96,-9.91,-9.84,-9.76,-9.65,-9.54,-9.4,-9.25,-9.09,-8.91,-8.72,-8.52,-8.31,-8.09,-7.86,-7.62,-7.37,-7.12,-6.85,-6.58,-6.31,-6.03,-5.76,-5.47,-5.19,-4.9,-4.62,-4.33,-4.05,-3.76,-3.49,-3.21,-2.94,-2.67,-2.41,-2.15,-1.91,-1.66,-1.44,-1.21,-1,-0.79,-0.61,-0.46,-0.33,-0.23,-0.15,-0.08,-0.04,0,0.02,0.039,0.046,0.047,0.043,0.035,0.026,0.017,0.008,0.002,0
PARAM_BREATH=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,0.997,0.987,0.972,0.951,0.93,0.9,0.86,0.82,0.78,0.74,0.7,0.65,0.6,0.55,0.5,0.45,0.4,0.35,0.3,0.26,0.22,0.18,0.14,0.1,0.07,0.05,0.028,0.013,0.003,0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,-2.21,-7.57,-14.12,-20.51,-25.64,-28.9,-30,-26.06,-17.57,-6.97,4.03,14.08,22.4,27.93,30,27.79,22.43,15.88,9.49,4.36,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_ANGLE_Y=0,-2.21,-7.57,-14.12,-20.51,-25.64,-28.9,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.62,-28.55,-26.87,-24.74,-22.2,-19.42,-16.49,-13.51,-10.58,-7.8,-5.26,-3.13,-1.45,-0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_ANGLE_Z=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,0.92,0.74,0.5,0.26,0.08,0,0.03,0.13,0.26,0.42,0.58,0.74,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
PARAM_EYE_L_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,0.92,0.74,0.5,0.26,0.08,0,0.03,0.13,0.26,0.42,0.58,0.74,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
PARAM_EYE_R_SMILE=0
PARAM_EYE_BALL_X=0,0,0,0,0,0,0,0,0.07,0.25,0.47,0.68,0.85,0.96,1,0.86,0.6,0.27,-0.09,-0.47,-0.82,-0.97,-1,-0.93,-0.75,-0.53,-0.32,-0.15,-0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.5,-0.39,-0.12,0.21,0.53,0.78,0.94,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.981,0.93,0.84,0.74,0.61,0.47,0.32,0.18,0.03,-0.11,-0.24,-0.34,-0.43,-0.48,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-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_BROW_L_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.08,-0.26,-0.5,-0.74,-0.92,-1,-0.97,-0.87,-0.74,-0.58,-0.42,-0.26,-0.13,-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
PARAM_BROW_R_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.08,-0.26,-0.5,-0.74,-0.92,-1,-0.97,-0.87,-0.74,-0.58,-0.42,-0.26,-0.13,-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
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,-0.009,-0.03,-0.06,-0.08,-0.103,-0.116,-0.12,-0.12,-0.119,-0.118,-0.116,-0.114,-0.111,-0.108,-0.105,-0.101,-0.097,-0.093,-0.089,-0.085,-0.08,-0.075,-0.07,-0.066,-0.061,-0.056,-0.051,-0.046,-0.041,-0.037,-0.032,-0.028,-0.024,-0.02,-0.017,-0.013,-0.01,-0.008,-0.006,-0.004,-0.002,-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_BROW_R_ANGLE=0,-0.009,-0.03,-0.06,-0.08,-0.103,-0.116,-0.12,-0.12,-0.119,-0.118,-0.116,-0.114,-0.111,-0.108,-0.105,-0.101,-0.097,-0.093,-0.089,-0.085,-0.08,-0.075,-0.07,-0.066,-0.061,-0.056,-0.051,-0.046,-0.041,-0.037,-0.032,-0.028,-0.024,-0.02,-0.017,-0.013,-0.01,-0.008,-0.006,-0.004,-0.002,-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_BROW_L_FORM=0,-0.06,-0.2,-0.37,-0.53,-0.67,-0.75,-0.78,-0.778,-0.773,-0.765,-0.753,-0.739,-0.722,-0.703,-0.68,-0.66,-0.63,-0.61,-0.58,-0.55,-0.52,-0.49,-0.46,-0.43,-0.39,-0.36,-0.33,-0.3,-0.27,-0.24,-0.21,-0.18,-0.16,-0.13,-0.11,-0.09,-0.068,-0.051,-0.036,-0.023,-0.013,-0.006,-0.002,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_FORM=0,-0.06,-0.2,-0.37,-0.53,-0.67,-0.75,-0.78,-0.778,-0.773,-0.765,-0.753,-0.739,-0.722,-0.703,-0.68,-0.66,-0.63,-0.61,-0.58,-0.55,-0.52,-0.49,-0.46,-0.43,-0.39,-0.36,-0.33,-0.3,-0.27,-0.24,-0.21,-0.18,-0.16,-0.13,-0.11,-0.09,-0.068,-0.051,-0.036,-0.023,-0.013,-0.006,-0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_MOUTH_FORM=0,0.07,0.19,0.27,0.3,-0.54,-0.85,-0.22,0.01,-0.26,-0.73,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.88,-0.77,-0.64,-0.52,-0.42,-0.35,-0.32,-0.311,-0.309,-0.31,-0.34,-0.4,-0.47,-0.55,-0.63,-0.72,-0.79,-0.85,-0.9,-0.94,-0.97,-0.986,-0.997,-1,-0.993,-0.975,-0.94,-0.91,-0.86,-0.8,-0.74,-0.68,-0.61,-0.54,-0.47,-0.41,-0.34,-0.28,-0.22,-0.17,-0.12,-0.08,-0.04,-0.02,-0.005,0
PARAM_MOUTH_OPEN_Y=0,0.24,0.64,0.91,1,0.27,0,0.18,0.38,0.65,0.8,0.85,0.838,0.81,0.78,0.75,0.72,0.69,0.676,0.67,0.684,0.72,0.76,0.8,0.84,0.85,0.839,0.81,0.75,0.67,0.56,0.35,0.2,0.09,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
PARAM_BODY_ANGLE_X=0
PARAM_BODY_ANGLE_Z=0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.45,-1.55,-3,-4.45,-5.55,-6,-5.7,-4.9,-3.66,-2.1,-0.37,1.5,3.37,5.1,6.66,7.9,8.7,9,8.92,8.7,8.37,7.93,7.42,6.84,6.23,5.58,4.92,4.25,3.6,2.96,2.35,1.8,1.29,0.85,0.5,0.23,0.06,0,0,0,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_ANGLE_Y=0,-2.25,-7.73,-15,-22.27,-27.75,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.85,-29.42,-28.75,-27.85,-26.79,-25.54,-24.16,-22.68,-21.12,-19.47,-17.8,-16.08,-14.34,-12.66,-11,-9.37,-7.84,-6.38,-5.02,-3.8,-2.72,-1.79,-1.03,-0.47,-0.12,0
PARAM_ANGLE_Z=0,-1.35,-4.64,-9,-13.36,-16.65,-18,-17.64,-16.68,-15.19,-13.32,-11.25,-9,-6.75,-4.68,-2.81,-1.32,-0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0.92,0.74,0.5,0.26,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.05,0.15,0.29,0.43,0.56,0.67,0.76,0.8,0.82,0.85,0.866,0.885,0.901,0.916,0.93,0.941,0.952,0.961,0.969,0.975,0.981,0.986,0.99,0.993,0.995,0.997,0.999,0.999,1,1
PARAM_EYE_L_SMILE=0,0.08,0.26,0.5,0.74,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,0.993,0.975,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.47,0.41,0.34,0.28,0.22,0.17,0.12,0.08,0.04,0.02,0.005,0
PARAM_EYE_R_OPEN=1,0.92,0.74,0.5,0.26,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.05,0.15,0.29,0.43,0.56,0.67,0.76,0.8,0.82,0.85,0.866,0.885,0.901,0.916,0.93,0.941,0.952,0.961,0.969,0.975,0.981,0.986,0.99,0.993,0.995,0.997,0.999,0.999,1,1
PARAM_EYE_R_SMILE=0,0.08,0.26,0.5,0.74,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,0.995,0.981,0.96,0.93,0.89,0.85,0.81,0.76,0.7,0.65,0.59,0.54,0.48,0.42,0.37,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5,-0.39,-0.11,0.25,0.61,0.89,1,1,1,1,1,1,1,1,1,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.992,0.97,0.94,0.89,0.84,0.78,0.71,0.63,0.56,0.47,0.39,0.3,0.22,0.13,0.05,-0.03,-0.11,-0.18,-0.25,-0.31,-0.36,-0.41,-0.45,-0.48,-0.494,-0.5
PARAM_BROW_L_Y=0,-0.05,-0.17,-0.33,-0.5,-0.63,-0.7,-0.72,-0.737,-0.751,-0.762,-0.771,-0.778,-0.783,-0.786,-0.788,-0.789,-0.79,-0.79,-0.788,-0.783,-0.775,-0.764,-0.751,-0.735,-0.717,-0.698,-0.68,-0.65,-0.63,-0.6,-0.58,-0.55,-0.52,-0.49,-0.46,-0.43,-0.4,-0.37,-0.34,-0.3,-0.27,-0.25,-0.22,-0.2,-0.17,-0.152,-0.134,-0.116,-0.1,-0.086,-0.073,-0.061,-0.05,-0.041,-0.033,-0.025,-0.019,-0.014,-0.009,-0.006,-0.003,-0.001,0,0
PARAM_BROW_R_Y=0,-0.05,-0.17,-0.34,-0.51,-0.64,-0.71,-0.73,-0.751,-0.766,-0.779,-0.789,-0.796,-0.802,-0.806,-0.808,-0.809,-0.81,-0.81,-0.808,-0.803,-0.794,-0.782,-0.768,-0.751,-0.732,-0.71,-0.69,-0.66,-0.64,-0.61,-0.58,-0.56,-0.53,-0.5,-0.46,-0.43,-0.4,-0.37,-0.33,-0.3,-0.27,-0.24,-0.22,-0.19,-0.17,-0.15,-0.132,-0.114,-0.098,-0.084,-0.071,-0.059,-0.049,-0.04,-0.031,-0.024,-0.018,-0.013,-0.009,-0.006,-0.003,-0.001,0,0
PARAM_BROW_L_X=0,-0.03,-0.11,-0.22,-0.32,-0.4,-0.43,-0.43,-0.428,-0.427,-0.424,-0.421,-0.417,-0.412,-0.407,-0.401,-0.395,-0.388,-0.381,-0.373,-0.365,-0.357,-0.348,-0.338,-0.329,-0.319,-0.309,-0.298,-0.288,-0.277,-0.266,-0.255,-0.244,-0.233,-0.222,-0.211,-0.2,-0.189,-0.178,-0.167,-0.156,-0.145,-0.135,-0.124,-0.114,-0.105,-0.095,-0.086,-0.077,-0.069,-0.06,-0.053,-0.046,-0.039,-0.032,-0.026,-0.021,-0.016,-0.012,-0.009,-0.006,-0.003,-0.001,0,0
PARAM_BROW_R_X=0,-0.03,-0.11,-0.22,-0.33,-0.41,-0.44,-0.44,-0.438,-0.436,-0.434,-0.43,-0.426,-0.422,-0.416,-0.411,-0.404,-0.397,-0.39,-0.382,-0.374,-0.365,-0.356,-0.346,-0.336,-0.326,-0.316,-0.305,-0.295,-0.284,-0.272,-0.261,-0.25,-0.239,-0.227,-0.216,-0.204,-0.193,-0.182,-0.17,-0.159,-0.149,-0.138,-0.127,-0.117,-0.107,-0.097,-0.088,-0.079,-0.07,-0.062,-0.054,-0.047,-0.04,-0.033,-0.027,-0.022,-0.017,-0.012,-0.009,-0.006,-0.003,-0.001,0,0
PARAM_BROW_L_ANGLE=0,0.06,0.21,0.4,0.59,0.74,0.8,0.799,0.797,0.794,0.79,0.785,0.78,0.775,0.77,0.766,0.763,0.761,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.76,0.756,0.745,0.728,0.71,0.68,0.65,0.61,0.57,0.54,0.49,0.45,0.41,0.36,0.32,0.28,0.24,0.2,0.16,0.13,0.1,0.07,0.05,0.026,0.012,0.003,0
PARAM_BROW_R_ANGLE=0,0.04,0.13,0.25,0.38,0.48,0.55,0.58,0.61,0.64,0.658,0.673,0.686,0.695,0.702,0.706,0.709,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.706,0.696,0.68,0.66,0.63,0.6,0.57,0.54,0.5,0.46,0.42,0.38,0.34,0.3,0.26,0.22,0.19,0.15,0.12,0.09,0.06,0.04,0.024,0.011,0.003,0
PARAM_BROW_L_FORM=0,-0.08,-0.26,-0.5,-0.74,-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,-0.995,-0.981,-0.96,-0.93,-0.89,-0.85,-0.81,-0.76,-0.7,-0.65,-0.59,-0.54,-0.48,-0.42,-0.37,-0.31,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.016,-0.004,0
PARAM_BROW_R_FORM=0,-0.08,-0.26,-0.5,-0.74,-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,-0.995,-0.981,-0.96,-0.93,-0.89,-0.85,-0.81,-0.76,-0.7,-0.65,-0.59,-0.54,-0.48,-0.42,-0.37,-0.31,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.016,-0.004,0
PARAM_MOUTH_FORM=0,0.09,0.24,0.33,0.24,0.09,0,0.11,0.29,0.41,0.45,0.453,0.458,0.461,0.461,0.454,0.439,0.42,0.38,0.32,0.25,0.18,0.09,0,-0.09,-0.18,-0.28,-0.37,-0.46,-0.55,-0.63,-0.71,-0.78,-0.84,-0.9,-0.94,-0.97,-0.993,-1,-0.995,-0.981,-0.96,-0.93,-0.89,-0.85,-0.81,-0.76,-0.7,-0.65,-0.59,-0.54,-0.48,-0.42,-0.37,-0.31,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.016,-0.004,0
PARAM_MOUTH_OPEN_Y=0,0.2,0.57,0.77,0.65,0.45,0.33,0.49,0.76,0.94,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,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_X=0,-0.23,-0.77,-1.5,-2.23,-2.77,-3,-2.92,-2.71,-2.38,-1.96,-1.5,-1,-0.5,-0.04,0.38,0.71,0.92,1,0.999,0.994,0.987,0.978,0.966,0.951,0.935,0.916,0.896,0.87,0.85,0.83,0.8,0.77,0.74,0.71,0.68,0.65,0.62,0.59,0.55,0.52,0.49,0.46,0.42,0.39,0.36,0.33,0.3,0.27,0.24,0.21,0.19,0.16,0.14,0.11,0.094,0.076,0.058,0.044,0.031,0.02,0.011,0.005,0.001,0
PARAM_BODY_ANGLE_Z=0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0,0,0,0,-0.13,-0.5,-1.05,-1.78,-2.63,-3.59,-4.62,-5.69,-6.8,-7.92,-9.01,-10.07,-11.08,-12,-12.85,-13.58,-14.17,-14.61,-14.9,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-14.87,-14.48,-13.88,-13.1,-12.18,-11.12,-9.96,-8.75,-7.5,-6.25,-5.04,-3.88,-2.82,-1.9,-1.12,-0.52,-0.13,0
PARAM_ANGLE_Y=0,0,0,0,0,-0.87,-3.14,-6.42,-10.17,-14.06,-17.7,-20.8,-23.17,-24.66,-25.18,-25.01,-24.54,-23.86,-23.09,-22.29,-21.54,-20.9,-20.42,-20.11,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-19.82,-19.31,-18.51,-17.47,-16.24,-14.82,-13.28,-11.66,-10,-8.34,-6.72,-5.18,-3.76,-2.53,-1.49,-0.69,-0.18,0
PARAM_ANGLE_Z=0
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0.02,0.07,0.15,0.24,0.33,0.42,0.5,0.56,0.59,0.61,0.615,0.619,0.621,0.624,0.625,0.627,0.629,0.63,0.632,0.634,0.637,0.641,0.645,0.65,0.658,0.671,0.688,0.709,0.73,0.76,0.78,0.81,0.84,0.87,0.89,0.92,0.94,0.96,0.976,0.989,0.997,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.66,0.58,0.5,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0.02,0.07,0.15,0.24,0.33,0.42,0.5,0.56,0.59,0.61,0.615,0.619,0.621,0.624,0.625,0.627,0.629,0.63,0.632,0.634,0.637,0.641,0.645,0.65,0.658,0.671,0.688,0.709,0.73,0.76,0.78,0.81,0.84,0.87,0.89,0.92,0.94,0.96,0.976,0.989,0.997,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.66,0.58,0.5,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0
PARAM_EYE_BALL_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.03,-0.12,-0.25,-0.4,-0.56,-0.7,-0.83,-0.92,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.66,-0.58,-0.5,-0.42,-0.34,-0.26,-0.19,-0.13,-0.07,-0.03,-0.01,0
PARAM_EYE_BALL_Y=-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.517,-0.56,-0.63,-0.7,-0.78,-0.85,-0.91,-0.96,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.996,-0.983,-0.963,-0.94,-0.91,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.63,-0.59,-0.56,-0.54,-0.517,-0.504,-0.5
PARAM_BROW_L_Y=0,0,0,0,0,-0.004,-0.014,-0.029,-0.049,-0.07,-0.09,-0.12,-0.15,-0.17,-0.2,-0.22,-0.24,-0.262,-0.278,-0.29,-0.297,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.297,-0.29,-0.278,-0.262,-0.244,-0.22,-0.2,-0.17,-0.15,-0.13,-0.1,-0.08,-0.06,-0.038,-0.022,-0.01,-0.003,0
PARAM_BROW_R_Y=0,0,0,0,0,-0.004,-0.014,-0.029,-0.049,-0.07,-0.09,-0.12,-0.15,-0.17,-0.2,-0.22,-0.24,-0.262,-0.278,-0.29,-0.297,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.297,-0.29,-0.278,-0.262,-0.244,-0.22,-0.2,-0.17,-0.15,-0.13,-0.1,-0.08,-0.06,-0.038,-0.022,-0.01,-0.003,0
PARAM_BROW_L_X=0,0,0,0,0,0,0,0,0,0,-0.013,-0.05,-0.1,-0.18,-0.26,-0.35,-0.45,-0.55,-0.65,-0.74,-0.82,-0.9,-0.95,-0.99,-1,-0.981,-0.93,-0.86,-0.77,-0.67,-0.57,-0.46,-0.36,-0.26,-0.18,-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_BROW_R_X=0,0,0,0,0,0,0,0,0,0,-0.013,-0.05,-0.1,-0.18,-0.26,-0.35,-0.45,-0.55,-0.65,-0.74,-0.82,-0.9,-0.95,-0.99,-1,-0.981,-0.93,-0.86,-0.77,-0.67,-0.57,-0.46,-0.36,-0.26,-0.18,-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_BROW_L_ANGLE=0,0,0,0,0,0,0,0,0,0,0.008,0.03,0.07,0.12,0.17,0.24,0.3,0.37,0.43,0.5,0.55,0.6,0.64,0.66,0.67,0.657,0.62,0.58,0.52,0.45,0.38,0.31,0.24,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
PARAM_BROW_R_ANGLE=0,0,0,0,0,0,0,0,0,0,0.013,0.05,0.1,0.18,0.26,0.35,0.45,0.55,0.65,0.74,0.82,0.9,0.95,0.99,1,0.981,0.93,0.86,0.77,0.67,0.57,0.46,0.36,0.26,0.18,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_BROW_L_FORM=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,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.66,-0.58,-0.5,-0.42,-0.34,-0.26,-0.19,-0.13,-0.07,-0.03,-0.01,0
PARAM_BROW_R_FORM=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,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.66,-0.58,-0.5,-0.42,-0.34,-0.26,-0.19,-0.13,-0.07,-0.03,-0.01,0
PARAM_MOUTH_FORM=0,0,0,0,0,0,0,-0.001,-0.002,-0.008,-0.01,-0.008,-0.004,-0.001,0,-0.005,-0.02,-0.04,-0.07,-0.11,-0.16,-0.21,-0.26,-0.32,-0.38,-0.44,-0.5,-0.56,-0.62,-0.68,-0.74,-0.79,-0.84,-0.89,-0.93,-0.96,-0.98,-0.995,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.66,-0.58,-0.5,-0.42,-0.34,-0.26,-0.19,-0.13,-0.07,-0.03,-0.01,0
PARAM_MOUTH_OPEN_Y=0,0.17,0.46,0.66,0.72,0.717,0.707,0.688,0.66,0.47,0.4,0.48,0.6,0.69,0.72,0.718,0.712,0.703,0.69,0.674,0.655,0.63,0.61,0.58,0.56,0.53,0.5,0.47,0.43,0.4,0.37,0.34,0.3,0.27,0.24,0.21,0.18,0.16,0.13,0.11,0.087,0.07,0.055,0.042,0.032,0.023,0.016,0.011,0.006,0.003,0.001,0,0,0,0,0,0
PARAM_BODY_ANGLE_X=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.97,-9.87,-9.72,-9.51,-9.26,-8.96,-8.62,-8.25,-7.84,-7.41,-6.95,-6.48,-5.99,-5.5,-5,-4.5,-4.01,-3.52,-3.05,-2.59,-2.16,-1.75,-1.38,-1.04,-0.74,-0.49,-0.28,-0.13,-0.03,0
PARAM_BODY_ANGLE_Z=0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0,0,0,0,0.34,1.25,2.55,4.04,5.58,7.03,8.26,9.2,9.79,10,9.83,9.33,8.59,7.63,6.49,5.21,3.84,2.41,0.94,-0.56,-2.01,-3.42,-4.77,-6,-7.13,-8.1,-8.9,-9.49,-9.87,-10,-9.75,-9.08,-8.05,-6.77,-5.29,-3.68,-1.97,-0.25,1.5,3.15,4.72,6.16,7.43,8.48,9.28,9.78,9.96,9.88,9.66,9.29,8.81,8.23,7.55,6.78,5.95,5.05,4.12,3.15,2.16,1.13,0.11,-0.91,-1.92,-2.91,-3.87,-4.79,-5.67,-6.48,-7.23,-7.92,-8.52,-9.03,-9.44,-9.75,-9.94,-10,-9.68,-8.87,-7.78,-6.5,-5.18,-3.87,-2.63,-1.58,-0.74,-0.2,0
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,-0.16,-0.62,-1.34,-2.26,-3.4,-4.66,-6.05,-7.53,-9.1,-10.67,-12.3,-13.91,-15.48,-17.02,-18.46,-19.82,-21.07,-22.18,-23.14,-23.93,-24.51,-24.87,-25,-24.5,-23.16,-21.09,-18.5,-15.62,-12.5,-9.38,-6.5,-3.91,-1.84,-0.5,0,0,0,0,0,0,0,0,0,0,0,0,-0.29,-1.03,-2.12,-3.46,-4.95,-6.51,-8.09,-9.63,-11.06,-12.35,-13.42,-14.27,-14.81,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-14.52,-13.31,-11.67,-9.75,-7.76,-5.8,-3.94,-2.38,-1.12,-0.3,0
PARAM_ANGLE_Z=0
PARAM_EYE_L_OPEN=1,1,1,1,1,0.995,0.978,0.94,0.88,0.78,0.65,0.41,0.14,0,0,0,0.05,0.17,0.32,0.48,0.6,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.48,0.17,0,0,0,0.18,0.46,0.73,0.92,1,0.999,0.997,0.993,0.988,0.982,0.975,0.967,0.958,0.948,0.938,0.928,0.917,0.906,0.894,0.883,0.872,0.862,0.852,0.842,0.833,0.825,0.818,0.812,0.807,0.803,0.801,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.806,0.823,0.84,0.87,0.9,0.92,0.95,0.97,0.985,0.996,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0.08,0.26,0.5,0.74,0.92,1,0.74,0.26,0,0,0,0.08,0.26,0.5,0.74,0.92,1,1,1,1,1,1,1,1,1,1,1,1,0.74,0.26,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,0.97,0.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,0.02,0
PARAM_EYE_R_OPEN=1,1,1,1,1,0.995,0.978,0.94,0.88,0.78,0.65,0.41,0.14,0,0,0,0.05,0.17,0.32,0.48,0.6,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.65,0.48,0.17,0,0,0,0.18,0.46,0.73,0.92,1,0.999,0.997,0.993,0.988,0.982,0.975,0.967,0.958,0.948,0.938,0.928,0.917,0.906,0.894,0.883,0.872,0.862,0.852,0.842,0.833,0.825,0.818,0.812,0.807,0.803,0.801,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.806,0.823,0.84,0.87,0.9,0.92,0.95,0.97,0.985,0.996,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0.08,0.26,0.5,0.74,0.92,1,0.74,0.26,0,0,0,0.08,0.26,0.5,0.74,0.92,1,1,1,1,1,1,1,1,1,1,1,1,0.74,0.26,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,0.97,0.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,0.02,0
PARAM_EYE_BALL_X=0,0,0,0,0,0.03,0.13,0.26,0.42,0.58,0.74,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,0.93,0.75,0.53,0.32,0.15,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.5,-0.5,-0.5,-0.5,-0.5,-0.517,-0.56,-0.63,-0.71,-0.79,-0.87,-0.94,-0.98,-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,0.996,0.984,0.966,0.94,0.91,0.87,0.83,0.79,0.74,0.69,0.64,0.58,0.53,0.47,0.42,0.36,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,0,0,0,0,0,0,0,0,0,0,0,0,-0.016,-0.06,-0.11,-0.17,-0.24,-0.31,-0.37,-0.42,-0.46,-0.49,-0.5
PARAM_BROW_L_Y=0
PARAM_BROW_R_Y=0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0
PARAM_BROW_R_ANGLE=0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,0.06,0.17,0.24,0.26,0.18,-0.01,-0.26,-0.5,-0.69,-0.77,-0.59,-0.31,-0.05,0.15,0.22,0.219,0.217,0.213,0.207,0.199,0.19,0.179,0.166,0.151,0.135,0.117,0.096,0.07,0.05,0.02,0,-0.03,-0.07,-0.1,-0.13,-0.17,-0.21,-0.26,-0.3,-0.35,-0.39,-0.45,-0.51,-0.57,-0.64,-0.73,-0.81,-0.88,-0.93,-0.97,-0.99,-1,-0.986,-0.95,-0.91,-0.87,-0.83,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.82,-0.79,-0.73,-0.64,-0.53,-0.42,-0.32,-0.22,-0.13,-0.06,-0.02,0
PARAM_MOUTH_OPEN_Y=0,0.18,0.48,0.71,0.83,0.9,0.95,0.98,0.994,0.999,1,0.94,0.83,0.73,0.65,0.6,0.57,0.54,0.51,0.48,0.45,0.43,0.41,0.389,0.37,0.353,0.337,0.323,0.31,0.299,0.289,0.28,0.273,0.266,0.261,0.257,0.254,0.252,0.25,0.25,0.31,0.44,0.63,0.81,0.94,1,0.96,0.85,0.73,0.6,0.5,0.44,0.42,0.46,0.57,0.71,0.85,0.96,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.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,0.02,0
PARAM_BODY_ANGLE_X=0,0,0,0,0,0.07,0.25,0.51,0.81,1.12,1.41,1.65,1.84,1.96,2,1.96,1.83,1.65,1.41,1.12,0.8,0.46,0.1,-0.27,-0.64,-1,-1.36,-1.69,-2,-2.28,-2.53,-2.72,-2.87,-2.97,-3,-2.94,-2.76,-2.48,-2.11,-1.68,-1.19,-0.65,-0.08,0.5,1.08,1.65,2.19,2.68,3.11,3.48,3.76,3.94,4,4,3.998,3.995,3.988,3.977,3.961,3.94,3.91,3.87,3.82,3.77,3.7,3.62,3.53,3.42,3.3,3.16,3,2.83,2.65,2.47,2.28,2.09,1.9,1.71,1.52,1.33,1.15,0.98,0.82,0.66,0.52,0.39,0.28,0.18,0.11,0.05,0.01,0
PARAM_BODY_ANGLE_Z=0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0,0,0,0,-0.2,-0.77,-1.66,-2.85,-4.3,-5.96,-7.76,-9.74,-11.81,-13.95,-16.05,-18.19,-20.26,-22.24,-24.04,-25.7,-27.15,-28.34,-29.23,-29.8,-30,-29.6,-28.53,-26.88,-24.8,-22.5,-20,-17.5,-15.2,-13.13,-11.47,-10.4,-10,-10.69,-12.53,-15.2,-18.37,-21.63,-24.8,-27.47,-29.31,-30,-29.66,-28.75,-27.45,-25.96,-24.42,-22.97,-21.74,-20.8,-20.21,-20,-20.13,-20.48,-21.03,-21.74,-22.56,-23.47,-24.4,-25.35,-26.28,-27.16,-27.95,-28.65,-29.22,-29.64,-29.91,-30,-29.4,-27.79,-25.38,-22.35,-19,-15.44,-11.94,-8.68,-5.78,-3.35,-1.53,-0.39,0
PARAM_ANGLE_Y=0,0,0,0,0,-0.07,-0.25,-0.51,-0.81,-1.12,-1.41,-1.65,-1.84,-1.96,-2,-1.6,-0.46,1.33,3.61,6.32,9.28,12.41,15.59,18.72,21.68,24.39,26.67,28.46,29.6,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.73,28.97,27.77,26.2,24.36,22.24,19.93,17.49,15,12.51,10.07,7.76,5.64,3.8,2.23,1.03,0.27,0
PARAM_ANGLE_Z=0,0,0,0,0,-0.1,-0.39,-0.83,-1.42,-2.15,-2.98,-3.88,-4.87,-5.91,-6.97,-8.03,-9.09,-10.13,-11.12,-12.02,-12.85,-13.58,-14.17,-14.61,-14.9,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-15,-14.87,-14.48,-13.88,-13.1,-12.18,-11.12,-9.96,-8.75,-7.5,-6.25,-5.04,-3.88,-2.82,-1.9,-1.12,-0.52,-0.13,0
PARAM_EYE_L_OPEN=1,1,1,1,1,0.993,0.975,0.95,0.92,0.89,0.86,0.83,0.816,0.804,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.59,0.21,0,0,0,0.06,0.2,0.39,0.58,0.73,0.8,0.811,0.821,0.831,0.84,0.85,0.859,0.867,0.876,0.883,0.891,0.899,0.906,0.912,0.919,0.925,0.931,0.936,0.942,0.947,0.952,0.956,0.96,0.964,0.968,0.972,0.975,0.978,0.981,0.984,0.986,0.988,0.99,0.992,0.994,0.995,0.996,0.997,0.998,0.999,0.999,1,1,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0.017,0.06,0.13,0.2,0.28,0.35,0.41,0.46,0.49,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.37,0.13,0,0,0,0.04,0.13,0.25,0.37,0.46,0.5,0.499,0.497,0.493,0.487,0.48,0.472,0.463,0.453,0.441,0.429,0.415,0.401,0.387,0.371,0.355,0.338,0.322,0.305,0.287,0.27,0.252,0.235,0.217,0.2,0.183,0.166,0.15,0.134,0.119,0.104,0.09,0.077,0.065,0.053,0.043,0.033,0.025,0.017,0.011,0.006,0.003,0.001,0
PARAM_EYE_R_OPEN=1,1,1,1,1,0.993,0.976,0.95,0.92,0.89,0.87,0.84,0.825,0.814,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.6,0.21,0,0,0,0.06,0.2,0.4,0.59,0.74,0.81,0.82,0.83,0.839,0.848,0.857,0.866,0.874,0.882,0.889,0.897,0.904,0.91,0.917,0.923,0.929,0.934,0.94,0.945,0.95,0.954,0.958,0.962,0.966,0.97,0.973,0.976,0.979,0.982,0.984,0.987,0.989,0.991,0.992,0.994,0.995,0.996,0.997,0.998,0.999,0.999,1,1,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0.017,0.06,0.13,0.2,0.28,0.35,0.41,0.46,0.49,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.37,0.13,0,0,0,0.04,0.13,0.25,0.37,0.46,0.5,0.499,0.497,0.493,0.487,0.48,0.472,0.463,0.453,0.441,0.429,0.415,0.401,0.387,0.371,0.355,0.338,0.322,0.305,0.287,0.27,0.252,0.235,0.217,0.2,0.183,0.166,0.15,0.134,0.119,0.104,0.09,0.077,0.065,0.053,0.043,0.033,0.025,0.017,0.011,0.006,0.003,0.001,0
PARAM_EYE_BALL_X=0,0,0,0,0,0.007,0.025,0.06,0.09,0.14,0.2,0.26,0.32,0.39,0.46,0.53,0.59,0.66,0.72,0.78,0.83,0.88,0.92,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.66,0.58,0.5,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0
PARAM_EYE_BALL_Y=-0.5,-0.5,-0.5,-0.5,-0.5,-0.503,-0.513,-0.528,-0.547,-0.57,-0.6,-0.63,-0.66,-0.69,-0.73,-0.76,-0.8,-0.83,-0.86,-0.89,-0.92,-0.94,-0.962,-0.978,-0.99,-0.997,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-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.996,-0.983,-0.963,-0.94,-0.91,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.63,-0.59,-0.56,-0.54,-0.517,-0.504,-0.5
PARAM_BROW_L_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.11,-0.28,-0.44,-0.55,-0.6,-0.56,-0.45,-0.32,-0.19,-0.09,-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
PARAM_BROW_R_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.1,-0.27,-0.42,-0.54,-0.58,-0.54,-0.43,-0.31,-0.18,-0.08,-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
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0
PARAM_BROW_R_ANGLE=0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,0.001,-0.006,-0.023,-0.05,-0.2,-0.39,-0.52,-0.56,-0.45,-0.2,0.14,0.48,0.73,0.84,0.81,0.75,0.66,0.56,0.45,0.34,0.24,0.15,0.08,0.03,0.01,0.003,0,-0.001,-0.001,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,-0.009,-0.03,-0.07,-0.12,-0.18,-0.24,-0.31,-0.38,-0.45,-0.53,-0.6,-0.67,-0.74,-0.8,-0.86,-0.91,-0.94,-0.97,-0.993,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.66,-0.58,-0.5,-0.42,-0.34,-0.26,-0.19,-0.13,-0.07,-0.03,-0.01,0
PARAM_MOUTH_OPEN_Y=0,0.06,0.16,0.23,0.25,0.19,0.09,0.02,0,0.05,0.17,0.34,0.5,0.62,0.67,0.655,0.62,0.56,0.5,0.44,0.38,0.32,0.27,0.23,0.2,0.19,0.23,0.31,0.43,0.55,0.65,0.74,0.8,0.86,0.9,0.94,0.96,0.979,0.989,0.995,0.999,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,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_X=0,0,0,0,0,-0.04,-0.17,-0.35,-0.59,-0.88,-1.2,-1.54,-1.9,-2.27,-2.64,-3,-3.36,-3.69,-4,-4.28,-4.53,-4.72,-4.87,-4.97,-5,-4.96,-4.85,-4.69,-4.48,-4.25,-4,-3.75,-3.52,-3.31,-3.15,-3.04,-3,-3.07,-3.25,-3.52,-3.84,-4.16,-4.48,-4.75,-4.93,-5,-4.94,-4.77,-4.56,-4.3,-4.04,-3.77,-3.53,-3.32,-3.15,-3.04,-3,-3.04,-3.14,-3.31,-3.53,-3.78,-4.06,-4.35,-4.65,-4.94,-5.22,-5.47,-5.69,-5.86,-5.96,-6,-5.89,-5.59,-5.15,-4.62,-4.02,-3.39,-2.76,-2.15,-1.58,-1.06,-0.63,-0.29,-0.08,0
PARAM_BODY_ANGLE_Z=0,0,0,0,0,-0.03,-0.1,-0.21,-0.36,-0.53,-0.72,-0.92,-1.14,-1.36,-1.58,-1.8,-2.01,-2.22,-2.4,-2.57,-2.72,-2.83,-2.92,-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,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2.97,-2.9,-2.78,-2.62,-2.44,-2.22,-1.99,-1.75,-1.5,-1.25,-1.01,-0.78,-0.56,-0.38,-0.22,-0.1,-0.03,0
PARAM_BREATH=0,0,0,0,0,0.005,0.02,0.04,0.07,0.11,0.16,0.21,0.26,0.32,0.38,0.44,0.5,0.56,0.62,0.68,0.74,0.79,0.84,0.89,0.93,0.96,0.98,0.995,1,0.997,0.989,0.977,0.96,0.94,0.91,0.88,0.85,0.82,0.78,0.74,0.7,0.66,0.62,0.57,0.53,0.48,0.44,0.4,0.35,0.31,0.27,0.23,0.2,0.16,0.13,0.1,0.08,0.05,0.035,0.02,0.009,0.002,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_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0
PARAM_ANGLE_Y=0,0,0,0,-0.69,-2.49,-5.1,-8.08,-11.17,-14.05,-16.52,-18.4,-19.58,-20,-16.72,-9.64,-0.81,8.36,16.73,23.67,28.28,30,29.7,28.9,27.66,26.1,24.37,22.5,20.63,18.9,17.34,16.1,15.3,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14.87,14.48,13.9,13.12,12.2,11.16,10.03,8.86,7.65,6.45,5.29,4.2,3.18,2.28,1.49,0.86,0.39,0.1,0
PARAM_ANGLE_Z=0,0,0,0,-0.19,-0.72,-1.55,-2.61,-3.84,-5.2,-6.6,-8.03,-9.41,-10.74,-11.93,-12.98,-13.84,-14.47,-14.87,-15,-14.81,-14.28,-13.45,-12.39,-11.16,-9.8,-8.4,-6.97,-5.59,-4.26,-3.07,-2.02,-1.16,-0.53,-0.13,0,0,0,0,0,0,0,0,0.6,2.21,4.69,7.8,11.26,15,18.74,22.2,25.31,27.79,29.4,30,29.998,29.986,29.96,29.91,29.83,29.71,29.56,29.35,29.08,28.75,28.35,27.87,27.31,26.66,25.91,25.06,24.09,23,21.71,20.29,18.79,17.18,15.55,13.88,12.2,10.57,8.98,7.44,6.01,4.71,3.53,2.5,1.62,0.93,0.42,0.11,0
PARAM_EYE_L_OPEN=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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,0.992,0.97,0.94,0.9,0.86,0.82,0.79,0.77,0.76,0.761,0.763,0.766,0.77,0.775,0.779,0.784,0.788,0.792,0.796,0.798,0.799,0.8,0.8,0.8,0.8,0.8,0.8,0.802,0.807,0.815,0.825,0.837,0.851,0.866,0.882,0.898,0.914,0.929,0.944,0.958,0.97,0.98,0.989,0.995,0.999,1
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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.67,0.59,0.51,0.43,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0
PARAM_EYE_R_OPEN=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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,0.992,0.97,0.94,0.9,0.86,0.82,0.79,0.77,0.76,0.761,0.763,0.766,0.77,0.775,0.779,0.784,0.788,0.792,0.796,0.798,0.799,0.8,0.8,0.8,0.8,0.8,0.8,0.802,0.807,0.815,0.825,0.837,0.851,0.866,0.882,0.898,0.914,0.929,0.944,0.958,0.97,0.98,0.989,0.995,0.999,1
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.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.67,0.59,0.51,0.43,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5
PARAM_BROW_L_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.07,0.25,0.47,0.68,0.85,0.96,1,0.992,0.972,0.94,0.91,0.88,0.85,0.82,0.79,0.77,0.755,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.743,0.724,0.69,0.66,0.61,0.56,0.5,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_BROW_R_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.07,0.25,0.47,0.68,0.85,0.96,1,0.992,0.972,0.94,0.91,0.88,0.85,0.82,0.79,0.77,0.755,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.743,0.724,0.69,0.66,0.61,0.56,0.5,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,0,0,0,0,0,0,0.001,0.001,0.002,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.01,0.011,0.013,0.015,0.017,0.019,0.021,0.023,0.026,0.029,0.032,0.035,0.038,0.041,0.045,0.048,0.052,0.056,0.06,0.065,0.069,0.074,0.079,0.085,0.09,0.096,0.101,0.107,0.114,0.12,0.127,0.134,0.141,0.148,0.156,0.164,0.172,0.18,0.193,0.21,0.23,0.26,0.28,0.31,0.34,0.36,0.38,0.397,0.41,0.417,0.42,0.418,0.412,0.402,0.389,0.373,0.354,0.33,0.31,0.29,0.26,0.24,0.21,0.18,0.16,0.13,0.11,0.09,0.07,0.047,0.031,0.018,0.008,0.002,0
PARAM_BROW_R_ANGLE=0,0,0,0,0,0,0,0.001,0.001,0.002,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.011,0.012,0.014,0.016,0.018,0.02,0.022,0.025,0.027,0.03,0.033,0.036,0.039,0.042,0.046,0.05,0.054,0.057,0.062,0.066,0.071,0.075,0.08,0.085,0.091,0.096,0.102,0.108,0.114,0.12,0.126,0.133,0.14,0.147,0.155,0.162,0.17,0.181,0.197,0.215,0.24,0.26,0.28,0.3,0.321,0.337,0.351,0.361,0.368,0.37,0.368,0.363,0.354,0.342,0.329,0.312,0.294,0.274,0.25,0.23,0.21,0.19,0.16,0.14,0.12,0.1,0.076,0.058,0.041,0.028,0.016,0.007,0.002,0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,-0.04,-0.13,-0.24,-0.36,-0.46,-0.55,-0.61,-0.63,-0.617,-0.58,-0.52,-0.45,-0.36,-0.26,-0.15,-0.03,0.09,0.22,0.34,0.46,0.56,0.64,0.7,0.75,0.78,0.796,0.806,0.809,0.81,0.68,0.37,0,-0.37,-0.67,-0.86,-0.92,-0.913,-0.89,-0.85,-0.78,-0.69,-0.57,-0.43,-0.27,-0.11,0.05,0.21,0.37,0.52,0.65,0.77,0.86,0.91,0.94,0.951,0.961,0.969,0.976,0.982,0.987,0.991,0.994,0.997,0.998,0.999,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.67,0.59,0.51,0.43,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0
PARAM_MOUTH_OPEN_Y=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,0.82,0.54,0.27,0.08,0,0.03,0.11,0.22,0.33,0.43,0.52,0.58,0.64,0.7,0.75,0.8,0.84,0.88,0.91,0.94,0.96,0.979,0.99,0.996,0.999,1,1,1,0.96,0.86,0.73,0.6,0.5,0.46,0.464,0.475,0.494,0.52,0.55,0.59,0.64,0.69,0.75,0.8,0.82,0.83,0.813,0.77,0.7,0.62,0.53,0.43,0.33,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,0,0,0,0,0,0
PARAM_BODY_ANGLE_X=0
PARAM_BODY_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.07,0.25,0.52,0.84,1.16,1.48,1.75,1.93,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,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
PARAM_BREATH=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.05,0.1,0.17,0.26,0.35,0.44,0.54,0.63,0.72,0.8,0.87,0.92,0.96,0.99,1,0.995,0.98,0.96,0.93,0.89,0.84,0.8,0.74,0.69,0.63,0.57,0.51,0.45,0.39,0.33,0.27,0.22,0.18,0.13,0.09,0.06,0.04,0.016,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,78 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.07,-0.28,-0.59,-1.01,-1.5,-2.07,-2.69,-3.33,-4,-4.67,-5.31,-5.93,-6.5,-6.99,-7.41,-7.72,-7.93,-8,-7.84,-7.4,-6.71,-5.82,-4.79,-3.64,-2.46,-1.25,-0.07,1.08,2.11,3.03,3.8,4.4,4.81,5,5.1,5.18,5.27,5.35,5.42,5.48,5.55,5.6,5.65,5.7,5.74,5.78,5.81,5.84,5.87,5.89,5.92,5.933,5.948,5.961,5.971,5.979,5.986,5.991,5.995,5.997,5.999,6,6,6,5.989,5.95,5.9,5.82,5.73,5.62,5.49,5.35,5.19,5.02,4.84,4.65,4.45,4.24,4.03,3.81,3.59,3.37,3.14,2.92,2.69,2.47,2.25,2.03,1.82,1.62,1.42,1.23,1.05,0.88,0.73,0.58,0.45,0.34,0.24,0.15,0.09,0.04,0.01,0
PARAM_ANGLE_Y=0,-0.27,-1.03,-2.23,-3.8,-5.64,-7.76,-10.07,-12.51,-15,-17.49,-19.93,-22.24,-24.36,-26.2,-27.77,-28.97,-29.73,-30,-29.91,-29.66,-29.24,-28.66,-27.94,-27.09,-26.11,-24.99,-23.78,-22.43,-21.02,-19.51,-17.89,-16.23,-14.51,-12.73,-10.89,-9.01,-7.1,-5.16,-3.2,-1.23,0.75,2.7,4.64,6.59,8.47,10.35,12.16,13.92,15.63,17.29,18.87,20.38,21.78,23.12,24.36,25.47,26.49,27.38,28.16,28.81,29.32,29.7,29.92,30,29.94,29.77,29.49,29.12,28.65,28.09,27.46,26.73,25.95,25.11,24.22,23.25,22.25,21.22,20.16,19.06,17.97,16.84,15.7,14.58,13.44,12.33,11.23,10.16,9.1,8.08,7.09,6.14,5.26,4.41,3.63,2.92,2.27,1.69,1.19,0.77,0.44,0.2,0.05,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.12,-0.46,-1.01,-1.73,-2.61,-3.63,-4.79,-6.03,-7.38,-8.78,-10.24,-11.73,-13.27,-14.8,-16.34,-17.86,-19.34,-20.8,-22.18,-23.49,-24.71,-25.84,-26.87,-27.77,-28.54,-29.16,-29.62,-29.9,-30,-29.68,-28.79,-27.48,-25.86,-24.11,-22.27,-20.51,-18.96,-17.75,-16.76,-15.78,-14.83,-13.94,-13.07,-12.23,-11.43,-10.65,-9.91,-9.21,-8.53,-7.87,-7.26,-6.67,-6.11,-5.58,-5.08,-4.61,-4.15,-3.74,-3.34,-2.97,-2.62,-2.3,-2,-1.73,-1.47,-1.24,-1.03,-0.84,-0.68,-0.53,-0.4,-0.29,-0.2,-0.13,-0.07,-0.03,-0.01,0
PARAM_EYE_L_OPEN=1,1,1,0.999,0.996,0.99,0.981,0.967,0.948,0.92,0.89,0.85,0.8,0.73,0.66,0.58,0.5,0.43,0.35,0.28,0.21,0.15,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,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.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,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_EYE_L_SMILE=0
PARAM_EYE_R_OPEN=1,1,1,0.999,0.996,0.99,0.981,0.967,0.948,0.92,0.89,0.85,0.8,0.73,0.66,0.58,0.5,0.43,0.35,0.28,0.21,0.15,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,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.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,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_EYE_R_SMILE=0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5,-0.509,-0.53,-0.57,-0.62,-0.68,-0.73,-0.79,-0.85,-0.9,-0.94,-0.97,-0.983,-0.987,-0.991,-0.994,-0.996,-0.998,-0.999,-0.999,-1,-1,-1,-1,-1,-1,-1,-1,-0.999,-0.999,-0.998,-0.997,-0.995,-0.993,-0.991,-0.989,-0.986,-0.983,-0.98,-0.976,-0.972,-0.968,-0.963,-0.959,-0.953,-0.948,-0.942,-0.936,-0.93,-0.923,-0.916,-0.908,-0.901,-0.893,-0.884,-0.875,-0.866,-0.857,-0.847,-0.836,-0.826,-0.815,-0.803,-0.791,-0.779,-0.767,-0.754,-0.741,-0.729,-0.717,-0.706,-0.694,-0.683,-0.672,-0.662,-0.652,-0.641,-0.632,-0.623,-0.614,-0.605,-0.597,-0.588,-0.581,-0.573,-0.566,-0.56,-0.553,-0.547,-0.542,-0.536,-0.531,-0.527,-0.522,-0.519,-0.515,-0.512,-0.509,-0.507,-0.505,-0.503,-0.502,-0.501,-0.5,-0.5
PARAM_BROW_L_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,-0.019,-0.07,-0.14,-0.23,-0.33,-0.43,-0.54,-0.64,-0.74,-0.82,-0.89,-0.95,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-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.88,-0.75,-0.6,-0.44,-0.3,-0.17,-0.08,-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
PARAM_BROW_R_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,-0.019,-0.07,-0.14,-0.23,-0.33,-0.43,-0.54,-0.64,-0.74,-0.82,-0.89,-0.95,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-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.88,-0.75,-0.6,-0.44,-0.3,-0.17,-0.08,-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
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0
PARAM_BROW_R_ANGLE=0
PARAM_BROW_L_FORM=0
PARAM_BROW_R_FORM=0
PARAM_MOUTH_FORM=0,0.16,0.42,0.6,0.66,0.66,0.655,0.64,0.27,0.02,-0.21,-0.33,-0.37,-0.359,-0.33,-0.29,-0.23,-0.17,-0.1,-0.03,0.05,0.13,0.21,0.29,0.4,0.46,0.51,0.55,0.58,0.62,0.65,0.67,0.691,0.71,0.74,0.76,0.778,0.79,0.806,0.821,0.835,0.849,0.862,0.875,0.887,0.898,0.908,0.919,0.928,0.937,0.945,0.953,0.96,0.966,0.972,0.978,0.982,0.987,0.99,0.993,0.996,0.998,0.999,1,1,0.998,0.992,0.983,0.971,0.955,0.936,0.92,0.89,0.87,0.84,0.81,0.77,0.74,0.71,0.67,0.64,0.6,0.56,0.52,0.49,0.45,0.41,0.37,0.34,0.3,0.27,0.24,0.2,0.18,0.15,0.12,0.1,0.08,0.056,0.04,0.026,0.015,0.007,0.002,0
PARAM_MOUTH_OPEN_Y=0,0.07,0.19,0.26,0.29,0.29,0.285,0.27,0.07,0,0.24,0.66,0.9,0.889,0.86,0.82,0.76,0.7,0.64,0.57,0.49,0.42,0.34,0.27,0.19,0.16,0.152,0.15,0.15,0.164,0.19,0.21,0.224,0.23,0.215,0.19,0.175,0.17,0.17,0.172,0.173,0.176,0.179,0.183,0.187,0.191,0.196,0.201,0.206,0.212,0.217,0.223,0.228,0.234,0.239,0.244,0.249,0.253,0.257,0.261,0.264,0.267,0.268,0.27,0.27,0.269,0.268,0.265,0.262,0.258,0.253,0.247,0.241,0.234,0.226,0.218,0.209,0.2,0.191,0.181,0.172,0.162,0.152,0.141,0.131,0.121,0.111,0.101,0.091,0.082,0.073,0.064,0.055,0.047,0.04,0.033,0.026,0.02,0.015,0.011,0.007,0.004,0.002,0,0
PARAM_BODY_ANGLE_X=0
PARAM_BODY_ANGLE_Z=0,0.07,0.25,0.47,0.68,0.85,0.96,1,0.94,0.77,0.56,0.3,0.04,-0.23,-0.47,-0.68,-0.85,-0.96,-1,-0.96,-0.86,-0.69,-0.48,-0.23,0.04,0.32,0.61,0.88,1.15,1.39,1.6,1.77,1.89,1.97,2,1.95,1.81,1.59,1.3,0.98,0.61,0.24,-0.14,-0.51,-0.86,-1.18,-1.46,-1.69,-1.86,-1.96,-2,-1.998,-1.992,-1.982,-1.969,-1.952,-1.931,-1.91,-1.88,-1.85,-1.82,-1.79,-1.75,-1.71,-1.67,-1.62,-1.58,-1.53,-1.48,-1.43,-1.38,-1.33,-1.28,-1.22,-1.17,-1.11,-1.06,-1,-0.94,-0.89,-0.83,-0.78,-0.72,-0.67,-0.62,-0.57,-0.52,-0.47,-0.42,-0.38,-0.33,-0.29,-0.25,-0.21,-0.18,-0.15,-0.12,-0.09,-0.07,-0.048,-0.031,-0.018,-0.008,-0.002,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0
PARAM_EYE_FORM=0
PARAM_EYE_BALL_FORM=1
PARAM_CHEEK_01=0,0.005,0.019,0.04,0.07,0.11,0.15,0.19,0.24,0.3,0.35,0.41,0.46,0.52,0.58,0.63,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984,0.996,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.998,0.992,0.983,0.971,0.955,0.936,0.92,0.89,0.87,0.84,0.81,0.77,0.74,0.71,0.67,0.64,0.6,0.56,0.52,0.49,0.45,0.41,0.37,0.34,0.3,0.27,0.24,0.2,0.18,0.15,0.12,0.1,0.08,0.056,0.04,0.026,0.015,0.007,0.002,0
PARAM_UPBACK=0,-0.002,-0.007,-0.015,-0.026,-0.039,-0.054,-0.07,-0.088,-0.107,-0.126,-0.146,-0.17,-0.188,-0.21,-0.228,-0.248,-0.266,-0.283,-0.3,-0.314,-0.327,-0.339,-0.348,-0.354,-0.359,-0.36,-0.358,-0.353,-0.345,-0.334,-0.321,-0.305,-0.287,-0.27,-0.24,-0.22,-0.2,-0.17,-0.14,-0.12,-0.09,-0.06,-0.03,0,0.03,0.06,0.09,0.12,0.15,0.18,0.2,0.23,0.25,0.28,0.3,0.317,0.335,0.352,0.366,0.378,0.387,0.394,0.399,0.4,0.399,0.397,0.393,0.388,0.382,0.375,0.366,0.356,0.346,0.335,0.323,0.31,0.297,0.283,0.269,0.254,0.24,0.225,0.209,0.194,0.179,0.164,0.15,0.135,0.121,0.108,0.095,0.082,0.07,0.059,0.048,0.039,0.03,0.023,0.016,0.01,0.006,0.003,0.001,0
PARAM_HAIR_TAIR=0
PARAM_ARM01=0,0.016,0.06,0.12,0.2,0.28,0.37,0.46,0.55,0.63,0.71,0.77,0.82,0.85,0.86,0.86,0.86,0.86,0.859,0.859,0.859,0.858,0.858,0.857,0.857,0.856,0.855,0.854,0.852,0.851,0.85,0.848,0.846,0.844,0.842,0.839,0.837,0.834,0.831,0.828,0.824,0.821,0.817,0.813,0.808,0.804,0.799,0.794,0.788,0.782,0.776,0.77,0.763,0.757,0.749,0.742,0.734,0.726,0.717,0.708,0.699,0.689,0.68,0.669,0.659,0.648,0.636,0.625,0.613,0.6,0.585,0.569,0.552,0.533,0.514,0.49,0.47,0.45,0.43,0.41,0.38,0.36,0.34,0.31,0.29,0.27,0.25,0.22,0.2,0.18,0.16,0.141,0.122,0.104,0.088,0.072,0.058,0.045,0.034,0.024,0.016,0.009,0.004,0.001,0
PARAM_RARM02=0,-0.006,-0.022,-0.05,-0.07,-0.11,-0.14,-0.18,-0.21,-0.24,-0.27,-0.29,-0.315,-0.329,-0.335,-0.338,-0.341,-0.344,-0.346,-0.349,-0.352,-0.354,-0.356,-0.359,-0.361,-0.363,-0.365,-0.367,-0.369,-0.371,-0.372,-0.374,-0.376,-0.377,-0.379,-0.38,-0.382,-0.383,-0.384,-0.385,-0.386,-0.388,-0.389,-0.39,-0.39,-0.391,-0.392,-0.393,-0.394,-0.394,-0.395,-0.395,-0.396,-0.397,-0.397,-0.397,-0.398,-0.398,-0.398,-0.399,-0.399,-0.399,-0.399,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.399,-0.396,-0.391,-0.384,-0.376,-0.366,-0.355,-0.343,-0.33,-0.316,-0.301,-0.285,-0.269,-0.253,-0.236,-0.219,-0.202,-0.185,-0.168,-0.152,-0.135,-0.119,-0.104,-0.09,-0.076,-0.063,-0.051,-0.04,-0.03,-0.021,-0.014,-0.008,-0.004,-0.001,0
PARAM_RARM03=0,-0.006,-0.021,-0.04,-0.07,-0.1,-0.13,-0.16,-0.19,-0.22,-0.25,-0.27,-0.285,-0.296,-0.3,-0.3,-0.3,-0.299,-0.298,-0.297,-0.296,-0.295,-0.293,-0.292,-0.29,-0.288,-0.285,-0.283,-0.28,-0.278,-0.275,-0.272,-0.269,-0.266,-0.262,-0.259,-0.255,-0.251,-0.247,-0.243,-0.239,-0.235,-0.231,-0.227,-0.222,-0.218,-0.213,-0.209,-0.204,-0.199,-0.194,-0.19,-0.185,-0.18,-0.175,-0.17,-0.165,-0.16,-0.155,-0.15,-0.145,-0.14,-0.135,-0.13,-0.125,-0.12,-0.115,-0.11,-0.106,-0.101,-0.096,-0.091,-0.087,-0.082,-0.078,-0.073,-0.069,-0.065,-0.061,-0.057,-0.053,-0.049,-0.045,-0.041,-0.038,-0.034,-0.031,-0.028,-0.025,-0.022,-0.02,-0.017,-0.015,-0.012,-0.01,-0.008,-0.007,-0.005,-0.004,-0.003,-0.002,-0.001,0,0,0
PARAM_LARM01=0,-0.07,-0.27,-0.55,-0.88,-1.22,-1.55,-1.83,-2.03,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.1,-2.094,-2.078,-2.05,-2.02,-1.97,-1.92,-1.86,-1.8,-1.73,-1.66,-1.58,-1.5,-1.41,-1.33,-1.24,-1.15,-1.06,-0.97,-0.88,-0.8,-0.71,-0.63,-0.55,-0.47,-0.4,-0.33,-0.27,-0.21,-0.16,-0.11,-0.07,-0.04,-0.02,-0.005,0
PARAM_LARM02=0,0.02,0.09,0.18,0.29,0.41,0.52,0.61,0.68,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.698,0.693,0.684,0.672,0.658,0.641,0.621,0.6,0.58,0.55,0.53,0.5,0.47,0.44,0.41,0.38,0.35,0.32,0.29,0.27,0.24,0.21,0.18,0.16,0.13,0.11,0.09,0.069,0.052,0.037,0.024,0.014,0.006,0.002,0
PARAM_LARM03=0,-0.014,-0.05,-0.11,-0.18,-0.25,-0.34,-0.42,-0.51,-0.59,-0.67,-0.74,-0.81,-0.86,-0.9,-0.93,-0.97,-1,-1.03,-1.06,-1.09,-1.12,-1.15,-1.17,-1.2,-1.23,-1.25,-1.27,-1.3,-1.32,-1.34,-1.36,-1.381,-1.4,-1.418,-1.436,-1.453,-1.469,-1.484,-1.499,-1.513,-1.527,-1.54,-1.552,-1.563,-1.574,-1.585,-1.594,-1.604,-1.612,-1.62,-1.628,-1.635,-1.642,-1.648,-1.654,-1.659,-1.663,-1.668,-1.672,-1.675,-1.678,-1.681,-1.683,-1.685,-1.686,-1.687,-1.688,-1.689,-1.689,-1.684,-1.671,-1.65,-1.62,-1.59,-1.55,-1.5,-1.45,-1.39,-1.33,-1.27,-1.2,-1.14,-1.07,-1,-0.93,-0.85,-0.78,-0.71,-0.64,-0.57,-0.5,-0.44,-0.38,-0.32,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.015,-0.004,0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.08,-0.26,-0.5,-0.74,-0.92,-1,-1,-1,-1,-1,-0.987,-0.95,-0.9,-0.83,-0.74,-0.65,-0.56,-0.46,-0.37,-0.28,-0.2,-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
PARAM_ANGLE_Y=0,-1.88,-6.44,-12.5,-18.56,-23.12,-25,-25,-25,-25,-25,-24.995,-24.976,-24.93,-24.85,-24.73,-24.56,-24.34,-24.05,-23.7,-23.26,-22.76,-22.17,-21.5,-20.76,-19.91,-19,-17.82,-16.61,-15.39,-14.22,-13.01,-11.86,-10.72,-9.61,-8.53,-7.5,-6.51,-5.57,-4.69,-3.86,-3.11,-2.43,-1.81,-1.28,-0.83,-0.48,-0.21,-0.06,0
PARAM_ANGLE_Z=0,0.51,1.75,3.4,5.05,6.29,6.8,6.48,5.6,4.24,2.48,0.44,-1.86,-4.3,-6.79,-9.26,-11.9,-13.61,-14.79,-15.59,-16.09,-16.38,-16.52,-16.56,-16.48,-16.24,-15.87,-15.37,-14.79,-14.1,-13.34,-12.52,-11.66,-10.74,-9.82,-8.87,-7.92,-6.99,-6.07,-5.17,-4.33,-3.52,-2.77,-2.1,-1.5,-0.99,-0.57,-0.26,-0.07,0
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,0.997,0.991,0.98,0.968,0.953,0.937,0.92,0.902,0.885,0.868,0.853,0.838,0.825,0.815,0.807,0.802,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.804,0.814,0.828,0.846,0.866,0.887,0.91,0.93,0.947,0.965,0.979,0.99,0.997,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0.73,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,0.997,0.991,0.98,0.968,0.953,0.937,0.92,0.902,0.885,0.868,0.853,0.838,0.825,0.815,0.807,0.802,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.804,0.814,0.828,0.846,0.866,0.887,0.91,0.93,0.947,0.965,0.979,0.99,0.997,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_EYE_BALL_X=0,-0.03,-0.08,-0.11,-0.12,-0.06,0.04,0.14,0.2,0.23,0.227,0.22,0.209,0.196,0.18,0.163,0.144,0.126,0.107,0.089,0.072,0.056,0.041,0.029,0.02,0.013,0.01,0.008,0.007,0.006,0.005,0.004,0.003,0.003,0.002,0.002,0.001,0.001,0.001,0,0,0,0,0,0,0,0,0,0,0
PARAM_EYE_BALL_Y=-0.5,-0.35,-0.1,0.08,0.17,0.24,0.27,0.3,0.32,0.33,0.338,0.344,0.35,0.355,0.36,0.364,0.367,0.37,0.372,0.374,0.376,0.377,0.378,0.379,0.38,0.38,0.38,0.374,0.358,0.33,0.3,0.26,0.22,0.17,0.11,0.06,0,-0.05,-0.11,-0.16,-0.22,-0.27,-0.32,-0.36,-0.4,-0.43,-0.46,-0.483,-0.495,-0.5
PARAM_BROW_L_Y=0,0.005,0.019,0.04,0.06,0.09,0.11,0.13,0.145,0.15,0.148,0.143,0.135,0.126,0.115,0.103,0.09,0.077,0.064,0.051,0.039,0.029,0.019,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
PARAM_BROW_R_Y=0,0.005,0.018,0.036,0.06,0.08,0.1,0.122,0.135,0.14,0.135,0.123,0.104,0.08,0.05,0.02,-0.01,-0.04,-0.07,-0.1,-0.13,-0.16,-0.18,-0.202,-0.217,-0.227,-0.23,-0.229,-0.224,-0.218,-0.209,-0.199,-0.187,-0.174,-0.161,-0.146,-0.132,-0.117,-0.102,-0.088,-0.073,-0.06,-0.048,-0.036,-0.026,-0.017,-0.01,-0.004,-0.001,0
PARAM_BROW_L_X=0,0.01,0.04,0.07,0.12,0.16,0.21,0.24,0.27,0.28,0.276,0.267,0.253,0.235,0.21,0.19,0.17,0.14,0.12,0.1,0.07,0.053,0.035,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
PARAM_BROW_R_X=0,0.01,0.04,0.07,0.12,0.16,0.21,0.24,0.27,0.28,0.276,0.267,0.253,0.235,0.21,0.19,0.17,0.14,0.12,0.1,0.07,0.053,0.035,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
PARAM_BROW_L_ANGLE=0,-0.007,-0.027,-0.06,-0.09,-0.13,-0.17,-0.21,-0.24,-0.26,-0.279,-0.295,-0.309,-0.32,-0.33,-0.339,-0.346,-0.352,-0.357,-0.361,-0.364,-0.366,-0.368,-0.369,-0.37,-0.37,-0.37,-0.368,-0.361,-0.35,-0.337,-0.32,-0.301,-0.28,-0.26,-0.24,-0.21,-0.19,-0.16,-0.14,-0.12,-0.1,-0.077,-0.058,-0.042,-0.028,-0.016,-0.007,-0.002,0
PARAM_BROW_R_ANGLE=0,-0.007,-0.026,-0.05,-0.09,-0.13,-0.17,-0.2,-0.24,-0.26,-0.28,-0.298,-0.313,-0.325,-0.336,-0.346,-0.353,-0.36,-0.365,-0.369,-0.373,-0.375,-0.377,-0.379,-0.379,-0.38,-0.38,-0.378,-0.371,-0.36,-0.346,-0.328,-0.309,-0.29,-0.27,-0.24,-0.22,-0.19,-0.17,-0.14,-0.12,-0.1,-0.08,-0.06,-0.043,-0.028,-0.016,-0.007,-0.002,0
PARAM_BROW_L_FORM=0,0.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_BROW_R_FORM=0,0.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_MOUTH_FORM=0,0.005,0.024,0.06,0.1,0.5,0.72,0.89,0.98,1,0.3,-0.49,-1,-1,-1,-1,-0.94,-0.77,-0.56,-0.3,-0.04,0.23,0.47,0.68,0.85,0.96,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0
PARAM_MOUTH_OPEN_Y=0,0.07,0.19,0.26,0.29,0.19,0.15,0.155,0.19,0.29,0.83,1,1,1,1,1,0.97,0.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,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
PARAM_BODY_ANGLE_X=0,0.06,0.23,0.5,0.86,1.28,1.77,2.32,2.89,3.5,4.12,4.75,5.36,5.96,6.52,7.06,7.54,7.97,8.33,8.63,8.85,8.98,9.03,8.99,8.89,8.72,8.49,8.21,7.89,7.52,7.12,6.69,6.23,5.76,5.26,4.76,4.26,3.76,3.27,2.79,2.34,1.91,1.51,1.14,0.82,0.54,0.31,0.14,0.04,0
PARAM_BODY_ANGLE_Z=0,-0.04,-0.16,-0.34,-0.58,-0.87,-1.19,-1.54,-1.91,-2.28,-2.65,-3.01,-3.35,-3.67,-3.95,-4.19,-4.39,-4.53,-4.62,-4.66,-4.641,-4.6,-4.53,-4.43,-4.31,-4.17,-4.01,-3.84,-3.65,-3.45,-3.24,-3.02,-2.79,-2.56,-2.33,-2.1,-1.87,-1.64,-1.42,-1.21,-1,-0.82,-0.64,-0.49,-0.35,-0.23,-0.13,-0.06,-0.02,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,83 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0.57,2.06,4.23,6.92,9.91,13.03,16.19,19.25,22.12,24.71,26.85,28.53,29.62,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.62,29.17,28.57,27.84,26.99,26.02,24.94,23.82,22.58,21.32,20.01,18.66,17.28,15.88,14.47,13.09,11.73,10.39,9.08,7.82,6.62,5.5,4.44,3.49,2.62,1.85,1.21,0.7,0.32,0.08,0
PARAM_ANGLE_Y=0,-0.57,-2.06,-4.23,-6.92,-9.91,-13.03,-16.19,-19.25,-22.12,-24.71,-26.85,-28.53,-29.62,-30,-29.45,-27.97,-25.84,-23.31,-20.69,-18.16,-16.03,-14.55,-14,-14.2,-14.77,-15.65,-16.79,-18.1,-19.55,-21.04,-22.56,-24.04,-25.46,-26.72,-27.84,-28.76,-29.43,-29.86,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.55,-28.66,-27.58,-26.38,-25.07,-23.39,-21.77,-20.23,-18.76,-17.36,-16.02,-14.73,-13.5,-12.36,-11.24,-10.21,-9.23,-8.3,-7.42,-6.59,-5.81,-5.09,-4.42,-3.8,-3.23,-2.7,-2.22,-1.8,-1.41,-1.08,-0.79,-0.55,-0.35,-0.2,-0.09,-0.02,0
PARAM_ANGLE_Z=0
PARAM_EYE_L_OPEN=1,0.97,0.89,0.79,0.69,0.62,0.57,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.51,0.41,0.29,0.17,0.08,0.02,0,0.04,0.14,0.26,0.38,0.47,0.53,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.551,0.556,0.562,0.571,0.582,0.595,0.61,0.626,0.643,0.661,0.68,0.7,0.72,0.741,0.76,0.78,0.8,0.82,0.844,0.864,0.883,0.901,0.917,0.933,0.948,0.961,0.972,0.982,0.99,0.995,0.999,1
PARAM_EYE_L_SMILE=0
PARAM_EYE_R_OPEN=1,0.97,0.89,0.79,0.69,0.62,0.57,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.51,0.41,0.29,0.17,0.08,0.02,0,0.04,0.14,0.26,0.38,0.47,0.53,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.551,0.556,0.562,0.571,0.582,0.595,0.61,0.626,0.643,0.661,0.68,0.7,0.72,0.741,0.76,0.78,0.8,0.82,0.844,0.864,0.883,0.901,0.917,0.933,0.948,0.961,0.972,0.982,0.99,0.995,0.999,1
PARAM_EYE_R_SMILE=0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5,-0.5,-0.502,-0.504,-0.507,-0.511,-0.515,-0.52,-0.526,-0.533,-0.54,-0.548,-0.556,-0.565,-0.574,-0.584,-0.594,-0.604,-0.615,-0.626,-0.637,-0.649,-0.661,-0.673,-0.685,-0.698,-0.71,-0.723,-0.735,-0.748,-0.761,-0.773,-0.786,-0.798,-0.81,-0.823,-0.835,-0.846,-0.858,-0.869,-0.88,-0.891,-0.901,-0.911,-0.921,-0.93,-0.939,-0.947,-0.955,-0.962,-0.969,-0.975,-0.98,-0.985,-0.989,-0.993,-0.996,-0.998,-0.999,-0.999,-0.998,-0.993,-0.985,-0.975,-0.963,-0.949,-0.933,-0.915,-0.896,-0.88,-0.85,-0.83,-0.81,-0.79,-0.76,-0.74,-0.72,-0.7,-0.67,-0.65,-0.63,-0.61,-0.592,-0.574,-0.558,-0.544,-0.531,-0.52,-0.512,-0.505,-0.501,-0.5
PARAM_BROW_L_Y=0,-0.04,-0.13,-0.24,-0.35,-0.44,-0.49,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.55,-0.63,-0.74,-0.84,-0.93,-0.98,-1,-0.96,-0.88,-0.77,-0.67,-0.58,-0.53,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.508,-0.504,-0.496,-0.486,-0.473,-0.459,-0.442,-0.424,-0.405,-0.38,-0.36,-0.34,-0.32,-0.29,-0.27,-0.25,-0.22,-0.2,-0.18,-0.15,-0.13,-0.113,-0.094,-0.076,-0.059,-0.045,-0.032,-0.021,-0.012,-0.005,-0.001,0
PARAM_BROW_R_Y=0,-0.04,-0.13,-0.24,-0.35,-0.44,-0.49,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.55,-0.63,-0.74,-0.84,-0.93,-0.98,-1,-0.96,-0.88,-0.77,-0.67,-0.58,-0.53,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.508,-0.504,-0.496,-0.486,-0.473,-0.459,-0.442,-0.424,-0.405,-0.38,-0.36,-0.34,-0.32,-0.29,-0.27,-0.25,-0.22,-0.2,-0.18,-0.15,-0.13,-0.113,-0.094,-0.076,-0.059,-0.045,-0.032,-0.021,-0.012,-0.005,-0.001,0
PARAM_BROW_L_X=0,-0.001,-0.004,-0.008,-0.014,-0.022,-0.031,-0.041,-0.053,-0.066,-0.08,-0.096,-0.112,-0.13,-0.148,-0.167,-0.188,-0.21,-0.23,-0.25,-0.28,-0.3,-0.32,-0.35,-0.37,-0.4,-0.42,-0.45,-0.47,-0.5,-0.52,-0.55,-0.57,-0.6,-0.62,-0.65,-0.67,-0.69,-0.72,-0.74,-0.76,-0.78,-0.8,-0.824,-0.843,-0.862,-0.879,-0.896,-0.911,-0.926,-0.939,-0.951,-0.962,-0.972,-0.98,-0.987,-0.993,-0.997,-0.999,-1,-0.997,-0.987,-0.972,-0.952,-0.93,-0.9,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.62,-0.58,-0.53,-0.48,-0.44,-0.39,-0.35,-0.3,-0.26,-0.22,-0.18,-0.15,-0.12,-0.09,-0.06,-0.04,-0.023,-0.011,-0.003,0
PARAM_BROW_R_X=0,-0.001,-0.004,-0.008,-0.014,-0.022,-0.031,-0.041,-0.053,-0.066,-0.08,-0.096,-0.112,-0.13,-0.148,-0.167,-0.188,-0.21,-0.23,-0.25,-0.28,-0.3,-0.32,-0.35,-0.37,-0.4,-0.42,-0.45,-0.47,-0.5,-0.52,-0.55,-0.57,-0.6,-0.62,-0.65,-0.67,-0.69,-0.72,-0.74,-0.76,-0.78,-0.8,-0.824,-0.843,-0.862,-0.879,-0.896,-0.911,-0.926,-0.939,-0.951,-0.962,-0.972,-0.98,-0.987,-0.993,-0.997,-0.999,-1,-0.997,-0.987,-0.972,-0.952,-0.93,-0.9,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.62,-0.58,-0.53,-0.48,-0.44,-0.39,-0.35,-0.3,-0.26,-0.22,-0.18,-0.15,-0.12,-0.09,-0.06,-0.04,-0.023,-0.011,-0.003,0
PARAM_BROW_L_ANGLE=0,0.001,0.004,0.008,0.014,0.022,0.031,0.041,0.053,0.066,0.08,0.096,0.112,0.13,0.148,0.167,0.188,0.21,0.23,0.25,0.28,0.3,0.32,0.35,0.37,0.4,0.42,0.45,0.47,0.5,0.52,0.55,0.57,0.6,0.62,0.65,0.67,0.69,0.72,0.74,0.76,0.78,0.8,0.824,0.843,0.862,0.879,0.896,0.911,0.926,0.939,0.951,0.962,0.972,0.98,0.987,0.993,0.997,0.999,1,0.997,0.987,0.972,0.952,0.93,0.9,0.87,0.83,0.79,0.75,0.71,0.67,0.62,0.58,0.53,0.48,0.44,0.39,0.35,0.3,0.26,0.22,0.18,0.15,0.12,0.09,0.06,0.04,0.023,0.011,0.003,0
PARAM_BROW_R_ANGLE=0,0.001,0.004,0.008,0.014,0.022,0.031,0.041,0.053,0.066,0.08,0.096,0.112,0.13,0.148,0.167,0.188,0.21,0.23,0.25,0.28,0.3,0.32,0.35,0.37,0.4,0.42,0.45,0.47,0.5,0.52,0.55,0.57,0.6,0.62,0.65,0.67,0.69,0.72,0.74,0.76,0.78,0.8,0.824,0.843,0.862,0.879,0.896,0.911,0.926,0.939,0.951,0.962,0.972,0.98,0.987,0.993,0.997,0.999,1,0.997,0.987,0.972,0.952,0.93,0.9,0.87,0.83,0.79,0.75,0.71,0.67,0.62,0.58,0.53,0.48,0.44,0.39,0.35,0.3,0.26,0.22,0.18,0.15,0.12,0.09,0.06,0.04,0.023,0.011,0.003,0
PARAM_BROW_L_FORM=0,-0.001,-0.004,-0.008,-0.014,-0.022,-0.031,-0.041,-0.053,-0.066,-0.08,-0.096,-0.112,-0.13,-0.148,-0.167,-0.188,-0.21,-0.23,-0.25,-0.28,-0.3,-0.32,-0.35,-0.37,-0.4,-0.42,-0.45,-0.47,-0.5,-0.52,-0.55,-0.57,-0.6,-0.62,-0.65,-0.67,-0.69,-0.72,-0.74,-0.76,-0.78,-0.8,-0.824,-0.843,-0.862,-0.879,-0.896,-0.911,-0.926,-0.939,-0.951,-0.962,-0.972,-0.98,-0.987,-0.993,-0.997,-0.999,-1,-0.997,-0.987,-0.972,-0.952,-0.93,-0.9,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.62,-0.58,-0.53,-0.48,-0.44,-0.39,-0.35,-0.3,-0.26,-0.22,-0.18,-0.15,-0.12,-0.09,-0.06,-0.04,-0.023,-0.011,-0.003,0
PARAM_BROW_R_FORM=0,-0.001,-0.004,-0.008,-0.014,-0.022,-0.031,-0.041,-0.053,-0.066,-0.08,-0.096,-0.112,-0.13,-0.148,-0.167,-0.188,-0.21,-0.23,-0.25,-0.28,-0.3,-0.32,-0.35,-0.37,-0.4,-0.42,-0.45,-0.47,-0.5,-0.52,-0.55,-0.57,-0.6,-0.62,-0.65,-0.67,-0.69,-0.72,-0.74,-0.76,-0.78,-0.8,-0.824,-0.843,-0.862,-0.879,-0.896,-0.911,-0.926,-0.939,-0.951,-0.962,-0.972,-0.98,-0.987,-0.993,-0.997,-0.999,-1,-0.997,-0.987,-0.972,-0.952,-0.93,-0.9,-0.87,-0.83,-0.79,-0.75,-0.71,-0.67,-0.62,-0.58,-0.53,-0.48,-0.44,-0.39,-0.35,-0.3,-0.26,-0.22,-0.18,-0.15,-0.12,-0.09,-0.06,-0.04,-0.023,-0.011,-0.003,0
PARAM_MOUTH_FORM=0,0.012,0.04,0.09,0.14,0.19,0.24,0.28,0.33,0.37,0.39,0.4,0.407,0.409,0.41,0.37,0.3,0.24,0.19,0.16,0.12,0.09,0.06,0.04,0,-0.03,-0.06,-0.1,-0.15,-0.21,-0.27,-0.34,-0.4,-0.46,-0.52,-0.58,-0.63,-0.67,-0.7,-0.72,-0.735,-0.74,-0.74,-0.74,-0.739,-0.738,-0.737,-0.735,-0.733,-0.731,-0.728,-0.724,-0.72,-0.716,-0.711,-0.705,-0.699,-0.692,-0.685,-0.677,-0.668,-0.658,-0.648,-0.636,-0.624,-0.611,-0.597,-0.582,-0.567,-0.55,-0.532,-0.513,-0.493,-0.47,-0.45,-0.42,-0.39,-0.36,-0.32,-0.29,-0.25,-0.22,-0.18,-0.15,-0.12,-0.09,-0.06,-0.04,-0.024,-0.011,-0.003,0
PARAM_MOUTH_OPEN_Y=0,0.04,0.14,0.25,0.37,0.46,0.52,0.54,0.52,0.46,0.38,0.31,0.26,0.22,0.21,0.42,0.79,1,0.98,0.92,0.85,0.77,0.68,0.59,0.51,0.44,0.38,0.34,0.33,0.343,0.38,0.43,0.5,0.58,0.66,0.73,0.81,0.87,0.93,0.97,0.99,1,0.997,0.989,0.977,0.96,0.94,0.91,0.88,0.85,0.82,0.78,0.74,0.7,0.66,0.61,0.57,0.52,0.48,0.43,0.39,0.34,0.3,0.26,0.22,0.18,0.15,0.12,0.09,0.06,0.04,0.023,0.011,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_BODY_ANGLE_X=0,-0.005,-0.011,-0.01,0.007,0.04,0.11,0.21,0.34,0.51,0.73,1,1.4,1.82,2.28,2.76,3.23,3.71,4.18,4.63,5.07,5.47,5.84,6.17,6.45,6.68,6.85,6.96,7,6.97,6.89,6.76,6.58,6.37,6.12,5.83,5.52,5.19,4.83,4.46,4.08,3.69,3.31,2.92,2.54,2.17,1.81,1.48,1.17,0.88,0.63,0.42,0.24,0.11,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
PARAM_BODY_ANGLE_Z=0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0
PARAM_EYE_FORM=0,0.001,0.004,0.008,0.014,0.022,0.031,0.041,0.053,0.066,0.08,0.096,0.112,0.13,0.148,0.167,0.188,0.21,0.23,0.25,0.28,0.3,0.32,0.35,0.37,0.4,0.42,0.45,0.47,0.5,0.52,0.55,0.57,0.6,0.62,0.65,0.67,0.69,0.72,0.74,0.76,0.78,0.8,0.824,0.843,0.862,0.879,0.896,0.911,0.926,0.939,0.951,0.962,0.972,0.98,0.987,0.993,0.997,0.999,1,0.997,0.987,0.972,0.952,0.93,0.9,0.87,0.83,0.79,0.75,0.71,0.67,0.62,0.58,0.53,0.48,0.44,0.39,0.35,0.3,0.26,0.22,0.18,0.15,0.12,0.09,0.06,0.04,0.023,0.011,0.003,0
PARAM_EYE_BALL_FORM=1,0.999,0.996,0.992,0.986,0.978,0.969,0.959,0.947,0.934,0.92,0.904,0.888,0.87,0.852,0.833,0.812,0.79,0.77,0.75,0.72,0.7,0.68,0.65,0.63,0.6,0.58,0.55,0.53,0.5,0.48,0.45,0.43,0.4,0.38,0.35,0.33,0.31,0.28,0.26,0.24,0.22,0.2,0.176,0.157,0.138,0.121,0.104,0.089,0.074,0.061,0.049,0.038,0.028,0.02,0.013,0.007,0.003,0.001,0,0.003,0.013,0.028,0.048,0.07,0.1,0.13,0.17,0.21,0.25,0.29,0.33,0.38,0.42,0.47,0.52,0.56,0.61,0.65,0.7,0.74,0.78,0.82,0.85,0.88,0.91,0.94,0.96,0.977,0.989,0.997,1
PARAM_CHEEK_01=0,0.001,0.004,0.008,0.014,0.022,0.031,0.041,0.053,0.066,0.08,0.096,0.112,0.13,0.148,0.167,0.188,0.21,0.23,0.25,0.28,0.3,0.32,0.35,0.37,0.4,0.42,0.45,0.47,0.5,0.52,0.55,0.57,0.6,0.62,0.65,0.67,0.69,0.72,0.74,0.76,0.78,0.8,0.824,0.843,0.862,0.879,0.896,0.911,0.926,0.939,0.951,0.962,0.972,0.98,0.987,0.993,0.997,0.999,1,0.997,0.987,0.972,0.952,0.93,0.9,0.87,0.83,0.79,0.75,0.71,0.67,0.62,0.58,0.53,0.48,0.44,0.39,0.35,0.3,0.26,0.22,0.18,0.15,0.12,0.09,0.06,0.04,0.023,0.011,0.003,0
PARAM_UPBACK=0
PARAM_HAIR_TAIR=0
PARAM_ARM01=0,-0.005,-0.018,-0.04,-0.07,-0.1,-0.13,-0.17,-0.21,-0.25,-0.28,-0.32,-0.35,-0.37,-0.39,-0.4,-0.406,-0.412,-0.417,-0.423,-0.428,-0.433,-0.437,-0.442,-0.446,-0.45,-0.453,-0.457,-0.46,-0.464,-0.467,-0.469,-0.472,-0.475,-0.477,-0.479,-0.481,-0.483,-0.485,-0.487,-0.488,-0.49,-0.491,-0.492,-0.493,-0.494,-0.495,-0.496,-0.497,-0.497,-0.498,-0.498,-0.499,-0.499,-0.499,-0.5,-0.5,-0.5,-0.5,-0.5,-0.499,-0.496,-0.491,-0.484,-0.475,-0.464,-0.451,-0.436,-0.42,-0.402,-0.382,-0.36,-0.34,-0.31,-0.29,-0.26,-0.23,-0.2,-0.17,-0.14,-0.11,-0.09,-0.071,-0.054,-0.041,-0.029,-0.02,-0.012,-0.007,-0.003,-0.001,0
PARAM_RARM02=0,0.014,0.05,0.12,0.22,0.34,0.5,0.69,0.93,1.26,1.57,1.83,2.04,2.19,2.27,2.3,2.3,2.3,2.299,2.299,2.298,2.297,2.296,2.294,2.293,2.291,2.289,2.286,2.283,2.28,2.277,2.273,2.269,2.265,2.26,2.255,2.25,2.244,2.238,2.231,2.224,2.217,2.209,2.201,2.192,2.183,2.174,2.163,2.153,2.142,2.13,2.118,2.105,2.092,2.078,2.064,2.049,2.033,2.017,2,1.98,1.95,1.92,1.88,1.84,1.79,1.73,1.68,1.61,1.55,1.48,1.41,1.34,1.27,1.19,1.11,1.04,0.96,0.87,0.77,0.67,0.58,0.48,0.4,0.31,0.24,0.17,0.11,0.07,0.03,0.01,0
PARAM_RARM03=0,-0.02,-0.07,-0.14,-0.22,-0.31,-0.4,-0.5,-0.6,-0.71,-0.79,-0.84,-0.87,-0.89,-0.898,-0.9,-0.895,-0.88,-0.86,-0.82,-0.78,-0.74,-0.68,-0.62,-0.55,-0.48,-0.41,-0.32,-0.24,-0.15,-0.06,0.04,0.13,0.23,0.33,0.44,0.54,0.64,0.74,0.84,0.94,1.04,1.13,1.23,1.32,1.41,1.49,1.57,1.65,1.72,1.79,1.85,1.9,1.95,2,2.03,2.06,2.08,2.096,2.1,2.07,2,1.89,1.75,1.57,1.38,1.16,0.93,0.7,0.47,0.24,0.02,-0.17,-0.35,-0.49,-0.6,-0.67,-0.7,-0.687,-0.65,-0.6,-0.54,-0.47,-0.4,-0.32,-0.25,-0.18,-0.12,-0.07,-0.03,-0.01,0
PARAM_LARM01=0,0.003,0.01,0.023,0.04,0.06,0.08,0.11,0.14,0.17,0.2,0.23,0.27,0.3,0.33,0.36,0.4,0.42,0.45,0.47,0.494,0.51,0.523,0.53,0.533,0.53,0.519,0.502,0.48,0.45,0.42,0.39,0.35,0.31,0.26,0.22,0.17,0.13,0.08,0.03,-0.01,-0.06,-0.1,-0.14,-0.19,-0.22,-0.26,-0.29,-0.32,-0.34,-0.358,-0.372,-0.381,-0.384,-0.383,-0.381,-0.377,-0.371,-0.364,-0.356,-0.347,-0.337,-0.326,-0.314,-0.302,-0.288,-0.275,-0.261,-0.246,-0.231,-0.216,-0.202,-0.186,-0.171,-0.156,-0.142,-0.128,-0.114,-0.1,-0.087,-0.075,-0.063,-0.052,-0.042,-0.033,-0.024,-0.017,-0.011,-0.007,-0.003,-0.001,0
PARAM_LARM02=0,-0.003,-0.01,-0.021,-0.036,-0.052,-0.07,-0.088,-0.107,-0.127,-0.145,-0.162,-0.178,-0.192,-0.203,-0.212,-0.218,-0.22,-0.215,-0.203,-0.183,-0.16,-0.12,-0.09,-0.04,0,0.05,0.1,0.15,0.21,0.26,0.31,0.36,0.41,0.46,0.5,0.54,0.57,0.6,0.616,0.628,0.632,0.632,0.629,0.625,0.62,0.614,0.606,0.597,0.586,0.575,0.563,0.55,0.536,0.522,0.506,0.49,0.473,0.456,0.439,0.421,0.403,0.384,0.366,0.347,0.328,0.309,0.29,0.271,0.253,0.235,0.217,0.199,0.182,0.165,0.148,0.132,0.117,0.103,0.089,0.076,0.064,0.052,0.042,0.032,0.024,0.017,0.011,0.006,0.003,0.001,0
PARAM_LARM03=0,-0.005,-0.018,-0.04,-0.07,-0.1,-0.15,-0.19,-0.25,-0.3,-0.37,-0.43,-0.5,-0.57,-0.65,-0.72,-0.8,-0.87,-0.95,-1.02,-1.1,-1.17,-1.24,-1.31,-1.37,-1.43,-1.48,-1.53,-1.57,-1.61,-1.63,-1.66,-1.668,-1.673,-1.665,-1.64,-1.6,-1.55,-1.48,-1.41,-1.32,-1.23,-1.13,-1.02,-0.9,-0.78,-0.66,-0.53,-0.41,-0.28,-0.16,-0.03,0.09,0.2,0.31,0.42,0.51,0.6,0.67,0.74,0.79,0.83,0.85,0.861,0.857,0.847,0.831,0.81,0.78,0.75,0.72,0.68,0.64,0.6,0.55,0.51,0.46,0.41,0.37,0.32,0.28,0.24,0.2,0.16,0.12,0.09,0.07,0.04,0.025,0.011,0.003,0
PARAM_LHandFB=0
PARAM_RHandFB=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,-1.03,-3.8,-7.8,-12.55,-17.45,-22.2,-26.2,-28.97,-30,-29.4,-27.79,-25.31,-22.2,-18.74,-15,-11.26,-7.8,-4.69,-2.21,-0.6,0,-0.27,-1.01,-2.11,-3.55,-5.24,-7.19,-9.4,-11.74,-14.33,-17.06,-20,-23.39,-25.93,-27.69,-28.85,-29.55,-29.9,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.8,-29.23,-28.34,-27.15,-25.7,-24.04,-22.24,-20.26,-18.19,-16.05,-13.95,-11.81,-9.74,-7.76,-5.96,-4.3,-2.85,-1.66,-0.77,-0.2,0
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,1.04,1.92,2.84,3.67,4.37,4.83,5,4.97,4.9,4.78,4.62,4.42,4.19,3.92,3.61,3.28,2.92,2.55,2.15,1.73,1.31,0.86,0.41,-0.04,-0.5,-0.96,-1.41,-1.86,-2.31,-2.73,-3.15,-3.55,-3.92,-4.28,-4.61,-4.92,-5.19,-5.42,-5.62,-5.78,-5.9,-5.97,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.96,-5.85,-5.67,-5.43,-5.14,-4.81,-4.45,-4.05,-3.64,-3.21,-2.79,-2.36,-1.95,-1.55,-1.19,-0.86,-0.57,-0.33,-0.15,-0.04,0
PARAM_EYE_L_OPEN=1,0.993,0.976,0.95,0.93,0.9,0.86,0.83,0.8,0.77,0.74,0.72,0.701,0.689,0.68,0.674,0.671,0.67,0.69,0.73,0.77,0.79,0.8,0.59,0.21,0,0,0.04,0.15,0.3,0.48,0.65,0.8,0.93,0.98,0.996,1,1,0.74,0.26,0,0,0.08,0.26,0.5,0.74,0.92,1,0.999,0.998,0.995,0.991,0.987,0.981,0.975,0.969,0.962,0.955,0.948,0.941,0.934,0.927,0.92,0.913,0.907,0.901,0.896,0.891,0.887,0.884,0.882,0.88,0.88,0.881,0.884,0.889,0.895,0.902,0.911,0.92,0.929,0.939,0.948,0.958,0.966,0.975,0.982,0.988,0.993,0.997,0.999,1
PARAM_EYE_L_SMILE=0
PARAM_EYE_R_OPEN=1,0.993,0.976,0.95,0.93,0.9,0.86,0.83,0.8,0.77,0.74,0.72,0.701,0.689,0.68,0.674,0.671,0.67,0.69,0.73,0.77,0.79,0.8,0.59,0.21,0,0,0.04,0.15,0.3,0.48,0.65,0.8,0.93,0.98,0.996,1,1,0.74,0.26,0,0,0.08,0.26,0.5,0.74,0.92,1,0.999,0.998,0.995,0.991,0.987,0.981,0.975,0.969,0.962,0.955,0.948,0.941,0.934,0.927,0.92,0.913,0.907,0.901,0.896,0.891,0.887,0.884,0.882,0.88,0.88,0.881,0.884,0.889,0.895,0.902,0.911,0.92,0.929,0.939,0.948,0.958,0.966,0.975,0.982,0.988,0.993,0.997,0.999,1
PARAM_EYE_R_SMILE=0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5,-0.53,-0.6,-0.69,-0.78,-0.87,-0.94,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.94,-0.89,-0.83,-0.76,-0.69,-0.63,-0.58,-0.54,-0.51,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.39,-0.11,0.25,0.61,0.89,1,1,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.65,0.5,0.35,0.19,0.04,-0.11,-0.24,-0.34,-0.43,-0.48,-0.5
PARAM_BROW_L_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.19,-0.5,-0.71,-0.78,-0.74,-0.64,-0.49,-0.32,-0.14,0.02,0.16,0.27,0.34,0.36,0.1,-0.32,-0.61,-0.71,-0.67,-0.59,-0.47,-0.34,-0.21,-0.1,0,0.07,0.11,0.14,0.156,0.165,0.169,0.17,0.168,0.164,0.157,0.148,0.138,0.126,0.113,0.099,0.085,0.071,0.057,0.044,0.032,0.022,0.013,0.006,0.002,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,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.47,-0.67,-0.74,-0.71,-0.62,-0.49,-0.34,-0.19,-0.05,0.07,0.16,0.22,0.24,-0.03,-0.48,-0.78,-0.88,-0.86,-0.79,-0.69,-0.57,-0.43,-0.3,-0.15,-0.05,0.02,0.06,0.1,0.117,0.127,0.13,0.129,0.126,0.12,0.114,0.106,0.096,0.086,0.076,0.065,0.054,0.044,0.034,0.024,0.016,0.01,0.004,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,0,0,0,0,0,0,0,0,0.005,0.018,0.04,0.07,0.1,0.14,0.18,0.22,0.27,0.31,0.35,0.39,0.43,0.46,0.49,0.51,0.525,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.529,0.525,0.52,0.512,0.502,0.491,0.478,0.463,0.447,0.43,0.412,0.393,0.373,0.353,0.33,0.31,0.29,0.27,0.25,0.22,0.2,0.18,0.163,0.143,0.124,0.106,0.09,0.074,0.059,0.046,0.035,0.024,0.016,0.009,0.004,0.001,0
PARAM_BROW_R_ANGLE=0,0,0,0,0,0,0,0,0,0.005,0.018,0.04,0.07,0.1,0.14,0.18,0.22,0.27,0.31,0.35,0.39,0.43,0.46,0.49,0.51,0.525,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.53,0.529,0.525,0.52,0.512,0.502,0.491,0.478,0.463,0.447,0.43,0.412,0.393,0.373,0.353,0.33,0.31,0.29,0.27,0.25,0.22,0.2,0.18,0.163,0.143,0.124,0.106,0.09,0.074,0.059,0.046,0.035,0.024,0.016,0.009,0.004,0.001,0
PARAM_BROW_L_FORM=0,-0.003,-0.012,-0.025,-0.043,-0.06,-0.09,-0.12,-0.15,-0.18,-0.21,-0.24,-0.28,-0.31,-0.35,-0.38,-0.41,-0.44,-0.47,-0.5,-0.52,-0.55,-0.564,-0.579,-0.591,-0.598,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.595,-0.579,-0.56,-0.52,-0.49,-0.45,-0.4,-0.35,-0.31,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.016,-0.004,0
PARAM_BROW_R_FORM=0,-0.003,-0.012,-0.025,-0.043,-0.06,-0.09,-0.12,-0.15,-0.18,-0.21,-0.24,-0.28,-0.31,-0.35,-0.38,-0.41,-0.44,-0.47,-0.5,-0.52,-0.55,-0.564,-0.579,-0.591,-0.598,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.595,-0.579,-0.56,-0.52,-0.49,-0.45,-0.4,-0.35,-0.31,-0.26,-0.21,-0.17,-0.13,-0.09,-0.06,-0.03,-0.016,-0.004,0
PARAM_MOUTH_FORM=0,-0.09,-0.25,-0.41,-0.54,-0.62,-0.66,-0.669,-0.7,-0.76,-0.82,-0.89,-0.95,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.83,-0.65,-0.44,-0.22,0,0.19,0.32,0.38,0.392,0.393,0.391,0.39,0.39,0.382,0.365,0.34,0.14,-0.19,-0.36,-0.347,-0.32,-0.27,-0.23,-0.2,-0.19,-0.4,-0.79,-1,-1,-1,-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.981,-0.93,-0.86,-0.77,-0.67,-0.57,-0.46,-0.36,-0.26,-0.18,-0.11,-0.05,-0.01,0
PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0.26,0.74,1,0.998,0.99,0.97,0.92,0.85,0.75,0.59,0.45,0.32,0.21,0.13,0.06,0.02,0,0.03,0.13,0.26,0.42,0.58,0.74,0.87,0.97,1,0.82,0.53,0.33,0.27,0.45,0.74,0.94,1,0.78,0.37,0.15,0.21,0.37,0.58,0.78,0.94,1,1,1,1,0.987,0.95,0.9,0.82,0.74,0.65,0.55,0.45,0.35,0.26,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
PARAM_BODY_ANGLE_X=0
PARAM_BODY_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.007,-0.026,-0.06,-0.09,-0.14,-0.2,-0.26,-0.32,-0.39,-0.46,-0.54,-0.61,-0.68,-0.74,-0.8,-0.86,-0.91,-0.94,-0.97,-0.993,-1,-0.995,-0.98,-0.96,-0.93,-0.89,-0.84,-0.8,-0.74,-0.69,-0.63,-0.57,-0.51,-0.45,-0.39,-0.33,-0.27,-0.22,-0.18,-0.13,-0.09,-0.06,-0.04,-0.016,-0.004,0,0,0,0,0,0,0,0,0,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,57 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,0.38,1.37,2.82,4.61,6.6,8.69,10.79,12.84,14.75,16.47,17.9,19.02,19.75,20,19.96,19.84,19.66,19.41,19.1,18.74,18.34,17.9,17.42,16.93,16.4,15.87,15.34,14.79,14.26,13.74,13.22,12.73,12.27,11.83,11.43,11.08,10.76,10.5,10.29,10.13,10.03,10,10.1,10.37,10.78,11.3,11.88,12.5,13.12,13.7,14.22,14.63,14.9,15,14.94,14.77,14.5,14.13,13.7,13.18,12.61,11.98,11.31,10.61,9.88,9.14,8.37,7.6,6.83,6.07,5.33,4.6,3.91,3.25,2.65,2.08,1.56,1.12,0.73,0.42,0.19,0.05,0
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.013,-0.05,-0.12,-0.22,-0.36,-0.52,-0.73,-0.96,-1.24,-1.55,-1.92,-2.31,-2.75,-3.24,-3.77,-4.34,-4.97,-5.63,-6.34,-7.11,-7.93,-8.78,-9.69,-10.66,-11.66,-12.72,-13.85,-15,-16.37,-17.86,-19.49,-21.16,-22.79,-24.41,-25.91,-27.23,-28.37,-29.25,-29.8,-30,-29.88,-29.54,-28.99,-28.27,-27.39,-26.37,-25.21,-23.97,-22.62,-21.22,-19.76,-18.27,-16.73,-15.2,-13.66,-12.14,-10.66,-9.2,-7.82,-6.51,-5.29,-4.16,-3.13,-2.23,-1.46,-0.84,-0.38,-0.1,0
PARAM_ANGLE_Z=0,0.05,0.2,0.44,0.76,1.18,1.67,2.22,2.85,3.54,4.3,5.09,5.94,6.85,7.78,8.74,9.74,10.77,11.81,12.85,13.92,15,16.08,17.15,18.19,19.23,20.26,21.26,22.22,23.15,24.06,24.91,25.7,26.46,27.15,27.78,28.33,28.82,29.24,29.56,29.8,29.95,30,29.94,29.77,29.5,29.13,28.67,28.12,27.51,26.82,26.06,25.25,24.37,23.47,22.51,21.52,20.51,19.47,18.4,17.32,16.23,15.13,14.06,12.96,11.9,10.83,9.8,8.8,7.8,6.86,5.96,5.11,4.3,3.54,2.85,2.23,1.67,1.18,0.76,0.44,0.2,0.05,0
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0.05,0.16,0.29,0.43,0.55,0.66,0.72,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.55,0.2,0,0,0,0,0.05,0.18,0.33,0.49,0.62,0.71,0.75,0.77,0.79,0.813,0.831,0.848,0.864,0.879,0.893,0.906,0.918,0.929,0.939,0.948,0.956,0.963,0.97,0.976,0.981,0.985,0.989,0.992,0.995,0.997,0.998,0.999,1,1
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0.82,0.54,0.27,0.08,0,0,0.07,0.25,0.47,0.68,0.85,0.96,1,0.996,0.984,0.966,0.94,0.91,0.87,0.83,0.79,0.74,0.69,0.64,0.58,0.53,0.47,0.42,0.36,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,0
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0.05,0.16,0.29,0.43,0.55,0.66,0.72,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.62,0.4,0.2,0.06,0,0,0.05,0.18,0.33,0.49,0.62,0.71,0.75,0.77,0.79,0.813,0.831,0.848,0.864,0.879,0.893,0.906,0.918,0.929,0.939,0.948,0.956,0.963,0.97,0.976,0.981,0.985,0.989,0.992,0.995,0.997,0.998,0.999,1,1
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0.14,0.22,0.3,0.37,0.45,0.51,0.57,0.63,0.68,0.73,0.77,0.81,0.85,0.88,0.9,0.93,0.945,0.961,0.974,0.984,0.991,0.996,0.999,1,0.82,0.54,0.27,0.08,0,0,0.07,0.25,0.47,0.68,0.85,0.96,1,0.996,0.984,0.966,0.94,0.91,0.87,0.83,0.79,0.74,0.69,0.64,0.58,0.53,0.47,0.42,0.36,0.31,0.26,0.21,0.17,0.13,0.09,0.06,0.03,0.016,0.004,0
PARAM_EYE_BALL_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.07,-0.25,-0.47,-0.68,-0.85,-0.96,-1,-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.92,-0.74,-0.5,-0.26,-0.08,0,-0.015,-0.05,-0.09,-0.14,-0.17,-0.19,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.16,-0.148,-0.135,-0.121,-0.107,-0.093,-0.079,-0.065,-0.052,-0.04,-0.029,-0.019,-0.011,-0.005,-0.001,0
PARAM_EYE_BALL_Y=-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.46,-0.37,-0.26,-0.16,-0.07,-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.08,0.26,0.5,0.74,0.92,1,1,1,1,1,1,1,1,0.99,0.96,0.92,0.86,0.79,0.7,0.61,0.51,0.41,0.3,0.2,0.09,-0.01,-0.11,-0.2,-0.29,-0.36,-0.42,-0.46,-0.49,-0.5
PARAM_BROW_L_Y=0,0.011,0.04,0.08,0.12,0.17,0.21,0.26,0.29,0.32,0.343,0.35,0.2,-0.03,-0.25,-0.41,-0.47,-0.455,-0.42,-0.36,-0.29,-0.22,-0.15,-0.09,-0.05,-0.04,-0.04,-0.041,-0.042,-0.045,-0.049,-0.054,-0.06,-0.068,-0.077,-0.089,-0.102,-0.118,-0.136,-0.155,-0.18,-0.2,-0.28,-0.43,-0.6,-0.76,-0.89,-0.97,-1,-0.987,-0.95,-0.89,-0.81,-0.72,-0.62,-0.51,-0.36,-0.23,-0.14,-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
PARAM_BROW_R_Y=0,0.011,0.04,0.08,0.12,0.17,0.21,0.26,0.29,0.32,0.343,0.35,0.2,-0.04,-0.26,-0.42,-0.48,-0.465,-0.42,-0.37,-0.3,-0.22,-0.15,-0.1,-0.06,-0.04,-0.04,-0.041,-0.042,-0.045,-0.049,-0.054,-0.06,-0.068,-0.077,-0.089,-0.102,-0.118,-0.136,-0.155,-0.18,-0.2,-0.28,-0.43,-0.6,-0.76,-0.89,-0.97,-1,-0.987,-0.95,-0.89,-0.81,-0.72,-0.62,-0.51,-0.36,-0.23,-0.14,-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
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,0.03,0.1,0.2,0.33,0.45,0.58,0.68,0.75,0.78,0.78,0.78,0.78,0.779,0.779,0.779,0.778,0.777,0.777,0.776,0.775,0.773,0.772,0.771,0.769,0.767,0.766,0.764,0.761,0.759,0.756,0.754,0.751,0.748,0.744,0.741,0.737,0.733,0.729,0.725,0.72,0.715,0.71,0.705,0.699,0.693,0.687,0.681,0.674,0.667,0.66,0.653,0.645,0.637,0.628,0.62,0.611,0.602,0.592,0.582,0.572,0.561,0.55,0.536,0.517,0.49,0.47,0.44,0.41,0.37,0.34,0.3,0.26,0.23,0.19,0.16,0.12,0.1,0.07,0.05,0.026,0.012,0.003,0
PARAM_BROW_R_ANGLE=0,0.03,0.1,0.2,0.33,0.45,0.58,0.68,0.75,0.78,0.78,0.78,0.78,0.78,0.779,0.779,0.779,0.778,0.778,0.777,0.777,0.776,0.775,0.774,0.773,0.772,0.771,0.769,0.768,0.766,0.765,0.763,0.761,0.759,0.756,0.754,0.751,0.749,0.746,0.743,0.74,0.736,0.733,0.729,0.725,0.721,0.717,0.713,0.708,0.703,0.698,0.693,0.687,0.682,0.676,0.67,0.663,0.657,0.65,0.643,0.635,0.628,0.62,0.608,0.591,0.57,0.54,0.51,0.47,0.43,0.39,0.35,0.31,0.27,0.23,0.19,0.15,0.11,0.08,0.05,0.03,0.015,0.004,0
PARAM_BROW_L_FORM=0,-0.03,-0.13,-0.26,-0.42,-0.58,-0.74,-0.87,-0.97,-1,-0.999,-0.995,-0.989,-0.981,-0.971,-0.96,-0.947,-0.933,-0.918,-0.901,-0.884,-0.867,-0.849,-0.83,-0.812,-0.793,-0.775,-0.756,-0.738,-0.721,-0.704,-0.688,-0.673,-0.659,-0.646,-0.635,-0.625,-0.616,-0.609,-0.604,-0.601,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.596,-0.585,-0.567,-0.54,-0.51,-0.48,-0.44,-0.41,-0.36,-0.32,-0.28,-0.24,-0.19,-0.16,-0.12,-0.09,-0.06,-0.03,-0.015,-0.004,0
PARAM_BROW_R_FORM=0,-0.03,-0.13,-0.26,-0.42,-0.58,-0.74,-0.87,-0.97,-1,-0.999,-0.995,-0.989,-0.981,-0.971,-0.96,-0.947,-0.933,-0.918,-0.901,-0.884,-0.867,-0.849,-0.83,-0.812,-0.793,-0.775,-0.756,-0.738,-0.721,-0.704,-0.688,-0.673,-0.659,-0.646,-0.635,-0.625,-0.616,-0.609,-0.604,-0.601,-0.6,-0.603,-0.61,-0.622,-0.638,-0.657,-0.68,-0.7,-0.73,-0.76,-0.79,-0.81,-0.84,-0.87,-0.9,-0.92,-0.94,-0.962,-0.978,-0.99,-0.997,-1,-0.993,-0.974,-0.94,-0.91,-0.86,-0.8,-0.74,-0.68,-0.61,-0.54,-0.46,-0.39,-0.32,-0.26,-0.2,-0.14,-0.09,-0.06,-0.03,-0.007,0
PARAM_MOUTH_FORM=0,0,0,0,0,0,0.24,0.64,0.91,1,0.12,-0.21,-0.1,0.09,0.26,0.38,0.43,0.08,-0.48,-0.87,-1,-0.83,-0.51,-0.28,-0.18,-0.1,-0.03,0.03,0.09,0.15,0.22,0.37,0.51,0.59,0.61,0.593,0.56,0.53,0.49,0.45,0.39,0.34,0.28,0.23,0.18,0.13,0.09,0.06,0.03,0.016,0.01,0.009,0.008,0.008,0.007,0.006,0.006,0.005,0.005,0.004,0.004,0.003,0.003,0.003,0.002,0.002,0.002,0.002,0.001,0.001,0.001,0.001,0.001,0,0,0,0,0,0,0,0,0,0,0
PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0.24,0.64,0.91,1,0.44,0.23,0.37,0.59,0.79,0.94,1,1,1,1,1,1,1,1,0.999,0.995,0.986,0.972,0.953,0.93,0.9,0.81,0.68,0.56,0.48,0.36,0.3,0.26,0.24,0.23,0.231,0.235,0.239,0.244,0.249,0.255,0.259,0.264,0.267,0.269,0.27,0.269,0.267,0.264,0.259,0.253,0.247,0.239,0.23,0.221,0.211,0.2,0.189,0.177,0.165,0.153,0.141,0.129,0.117,0.105,0.093,0.081,0.07,0.059,0.049,0.04,0.031,0.023,0.017,0.011,0.006,0.003,0.001,0
PARAM_BODY_ANGLE_X=0,-0.13,-0.41,-0.77,-1.13,-1.47,-1.75,-1.93,-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,-0.04,-0.14,-0.29,-0.5,-0.75,-1.02,-1.33,-1.64,-1.96,-2.28,-2.59,-2.88,-3.15,-3.39,-3.6,-3.77,-3.9,-3.97,-4,-3.984,-3.94,-3.86,-3.76,-3.63,-3.48,-3.31,-3.13,-2.93,-2.71,-2.49,-2.25,-2.02,-1.77,-1.53,-1.29,-1.05,-0.81,-0.58,-0.36,-0.15,0.05,0.23,0.4,0.55,0.68,0.79,0.88,0.95,0.99,1,0.995,0.98,0.96,0.93,0.89,0.84,0.8,0.74,0.69,0.63,0.57,0.51,0.45,0.39,0.33,0.27,0.22,0.18,0.13,0.09,0.06,0.04,0.016,0.004,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0

View File

@@ -0,0 +1,88 @@
# Live2D Animator Motion Data
$fps=30
$fadein=1000
$fadeout=1000
PARAM_ANGLE_X=0,-0.06,-0.22,-0.46,-0.76,-1.1,-1.46,-1.81,-2.13,-2.42,-2.66,-2.85,-2.96,-3,-2.42,-1,0.72,2.41,3.76,4.62,4.91,4.68,4.17,3.55,2.89,2.3,1.8,1.47,1.35,2.54,4.44,6.22,7.5,8,7.65,6.87,5.82,4.63,3.4,2.17,1.03,0,-1.16,-2.13,-2.94,-3.64,-4.22,-4.69,-5.08,-5.39,-5.64,-5.83,-5.96,-6.05,-6.1,-6.115,-6.07,-5.9,-5.61,-5.16,-4.56,-3.75,-2.74,-1.49,0,1.67,3.28,4.78,6.01,6.82,7.13,5.86,3.82,1.91,0.54,0,0.34,1.23,2.52,4,5.53,6.95,8.17,9.1,9.69,9.89,9.73,9.32,8.73,8.08,7.48,7,6.66,6.39,6.18,6.02,5.91,5.84,5.8,5.779,5.774,5.87,6.11,6.43,6.8,7.19,7.58,7.94,8.25,8.5,8.66,8.72,8.66,8.5,8.25,7.93,7.53,7.09,6.61,6.09,5.55,4.99,4.43,3.87,3.32,2.78,2.28,1.81,1.37,0.98,0.65,0.37,0.17,0.04,0
PARAM_ANGLE_Y=0,-0.67,-2.42,-4.96,-7.85,-10.86,-13.67,-16.06,-17.89,-19.04,-19.45,-18.17,-15.42,-11.98,-8.42,-5.16,-2.46,-0.67,0,-1.11,-3.79,-7.08,-10.28,-12.85,-14.48,-15.03,-13.22,-8.17,0,10.94,16.89,20.45,22.39,23,21.49,18.23,14.17,9.95,6.1,2.91,0.79,0,0.67,2.47,5.07,8.16,11.35,14.43,17.04,18.84,19.51,19.13,18.17,16.75,15.01,13.07,11.04,8.98,6.99,5.13,3.44,2.05,0.95,0.25,0,1.31,4.5,8.73,12.97,16.15,17.46,14.34,9.34,4.68,1.31,0,0.87,2.75,5.09,7.52,9.74,11.57,12.8,13.25,12.45,10.71,8.55,6.3,4.25,2.55,1.42,1,1.22,1.86,2.88,4.26,5.92,7.89,10.12,12.57,15.2,18.22,20.31,21.85,22.97,23.73,24.23,24.5,24.59,24.46,24.11,23.56,22.83,21.95,20.93,19.8,18.59,17.31,15.95,14.59,13.17,11.75,10.37,9.02,7.68,6.43,5.23,4.12,3.11,2.23,1.46,0.85,0.39,0.1,0
PARAM_ANGLE_Z=0,0.24,0.86,1.75,2.78,3.84,4.84,5.68,6.33,6.74,6.88,6.43,5.46,4.24,2.98,1.83,0.87,0.24,0,0.79,2.05,3.23,4.08,4.41,4.29,3.85,3.04,1.79,0,-2.99,-5.92,-8.47,-10.54,-12.02,-12.88,-13.16,-12.17,-9.77,-6.58,-3.39,-0.99,0,-1.18,-4.04,-7.53,-10.94,-13.67,-15.41,-16,-15.75,-15.08,-14.11,-12.86,-11.43,-9.83,-8.06,-6.24,-4.29,-2.3,-0.23,1.72,3.06,3.96,4.48,4.71,4.77,4.53,3.91,2.94,1.58,-0.23,-2.85,-5.25,-7.48,-9.52,-11.34,-12.95,-14.33,-15.48,-16.4,-17.12,-17.61,-17.9,-18,-17.42,-15.97,-14.01,-11.72,-9.33,-6.98,-4.75,-2.88,-1.37,-0.39,-0.03,-0.26,-0.89,-1.89,-3.19,-4.73,-6.49,-8.42,-10.44,-12.52,-14.59,-16.62,-18.54,-20.3,-21.84,-23.14,-24.14,-24.77,-25,-23.82,-21.54,-19.37,-17.68,-15.61,-13.7,-11.92,-10.28,-8.8,-7.42,-6.17,-5.05,-4.04,-3.16,-2.39,-1.74,-1.19,-0.76,-0.42,-0.19,-0.05,0
PARAM_EYE_L_OPEN=1,0.92,0.74,0.5,0.26,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1
PARAM_EYE_L_SMILE=0,0.08,0.26,0.5,0.74,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,1,1,1,0.76,0.36,0.09,0
PARAM_EYE_R_OPEN=1,0.92,0.74,0.5,0.26,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1
PARAM_EYE_R_SMILE=0,0.08,0.26,0.5,0.74,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,1,1,1,0.76,0.36,0.09,0
PARAM_EYE_BALL_X=0
PARAM_EYE_BALL_Y=-0.5
PARAM_BROW_L_Y=0,-0.05,-0.18,-0.36,-0.53,-0.66,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.71,-0.54,-0.26,-0.06,0
PARAM_BROW_R_Y=0,-0.05,-0.19,-0.36,-0.53,-0.67,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.72,-0.55,-0.26,-0.06,0
PARAM_BROW_L_X=0
PARAM_BROW_R_X=0
PARAM_BROW_L_ANGLE=0,-0.015,-0.05,-0.1,-0.15,-0.18,-0.2,-0.2,-0.199,-0.199,-0.198,-0.197,-0.195,-0.193,-0.191,-0.189,-0.187,-0.184,-0.181,-0.178,-0.175,-0.171,-0.168,-0.164,-0.16,-0.156,-0.151,-0.147,-0.142,-0.137,-0.132,-0.127,-0.122,-0.117,-0.111,-0.105,-0.1,-0.094,-0.088,-0.082,-0.076,-0.07,-0.064,-0.057,-0.051,-0.045,-0.038,-0.032,-0.025,-0.019,-0.012,-0.006,0.001,0.007,0.014,0.021,0.027,0.034,0.04,0.046,0.053,0.059,0.066,0.072,0.078,0.084,0.09,0.096,0.102,0.108,0.113,0.119,0.124,0.13,0.135,0.14,0.145,0.15,0.155,0.159,0.164,0.168,0.172,0.176,0.179,0.183,0.186,0.189,0.192,0.195,0.198,0.2,0.202,0.204,0.205,0.207,0.208,0.209,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.202,0.18,0.15,0.11,0.06,0.01,-0.04,-0.08,-0.12,-0.15,-0.18,-0.195,-0.2,-0.15,-0.07,-0.02,0
PARAM_BROW_R_ANGLE=0,-0.015,-0.05,-0.1,-0.15,-0.18,-0.2,-0.2,-0.199,-0.199,-0.198,-0.197,-0.195,-0.193,-0.191,-0.189,-0.187,-0.184,-0.181,-0.178,-0.175,-0.171,-0.168,-0.164,-0.16,-0.156,-0.151,-0.147,-0.142,-0.137,-0.132,-0.127,-0.122,-0.117,-0.111,-0.105,-0.1,-0.094,-0.088,-0.082,-0.076,-0.07,-0.064,-0.057,-0.051,-0.045,-0.038,-0.032,-0.025,-0.019,-0.012,-0.006,0.001,0.007,0.014,0.021,0.027,0.034,0.04,0.046,0.053,0.059,0.066,0.072,0.078,0.084,0.09,0.096,0.102,0.108,0.113,0.119,0.124,0.13,0.135,0.14,0.145,0.15,0.155,0.159,0.164,0.168,0.172,0.176,0.179,0.183,0.186,0.189,0.192,0.195,0.198,0.2,0.202,0.204,0.205,0.207,0.208,0.209,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.202,0.18,0.15,0.11,0.06,0.01,-0.04,-0.08,-0.12,-0.15,-0.18,-0.195,-0.2,-0.15,-0.07,-0.02,0
PARAM_BROW_L_FORM=0,0.013,0.04,0.08,0.13,0.16,0.17,0.17,0.169,0.169,0.167,0.166,0.164,0.162,0.16,0.157,0.154,0.151,0.148,0.144,0.14,0.136,0.131,0.127,0.122,0.117,0.112,0.106,0.101,0.095,0.089,0.083,0.077,0.07,0.064,0.057,0.05,0.043,0.036,0.029,0.022,0.014,0.007,-0.001,-0.008,-0.016,-0.023,-0.031,-0.039,-0.047,-0.054,-0.062,-0.07,-0.078,-0.086,-0.094,-0.101,-0.109,-0.117,-0.125,-0.132,-0.14,-0.147,-0.155,-0.162,-0.17,-0.177,-0.184,-0.191,-0.198,-0.205,-0.211,-0.218,-0.224,-0.23,-0.236,-0.242,-0.248,-0.254,-0.259,-0.264,-0.27,-0.274,-0.279,-0.283,-0.288,-0.292,-0.295,-0.299,-0.302,-0.305,-0.308,-0.31,-0.313,-0.314,-0.316,-0.318,-0.319,-0.319,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.32,-0.31,-0.28,-0.24,-0.2,-0.14,-0.08,-0.03,0.03,0.08,0.12,0.15,0.164,0.17,0.13,0.06,0.02,0
PARAM_BROW_R_FORM=0,0.015,0.05,0.1,0.15,0.18,0.2,0.2,0.199,0.198,0.197,0.196,0.194,0.192,0.189,0.187,0.184,0.18,0.177,0.173,0.169,0.164,0.16,0.155,0.15,0.145,0.139,0.134,0.128,0.122,0.116,0.109,0.103,0.096,0.089,0.082,0.075,0.068,0.061,0.053,0.046,0.038,0.03,0.023,0.015,0.007,-0.001,-0.009,-0.017,-0.025,-0.034,-0.042,-0.05,-0.058,-0.066,-0.074,-0.082,-0.091,-0.099,-0.107,-0.115,-0.122,-0.13,-0.138,-0.146,-0.153,-0.161,-0.168,-0.176,-0.183,-0.19,-0.197,-0.204,-0.21,-0.217,-0.223,-0.229,-0.235,-0.241,-0.247,-0.252,-0.257,-0.262,-0.267,-0.272,-0.276,-0.28,-0.284,-0.288,-0.291,-0.294,-0.297,-0.3,-0.302,-0.304,-0.306,-0.307,-0.309,-0.309,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.31,-0.3,-0.27,-0.23,-0.18,-0.12,-0.06,0,0.05,0.1,0.14,0.17,0.193,0.2,0.15,0.07,0.02,0
PARAM_MOUTH_FORM=0,0.04,0.13,0.27,0.41,0.53,0.62,0.68,0.71,0.74,0.746,0.749,0.75,0.75,0.736,0.71,0.69,0.676,0.67,0.685,0.71,0.725,0.73,0.73,0.73,0.73,0.729,0.729,0.729,0.728,0.727,0.727,0.726,0.724,0.723,0.722,0.72,0.718,0.716,0.714,0.711,0.708,0.705,0.702,0.698,0.694,0.69,0.67,0.62,0.56,0.49,0.42,0.35,0.29,0.24,0.2,0.18,0.17,0.19,0.24,0.32,0.41,0.51,0.59,0.67,0.72,0.76,0.77,0.73,0.65,0.54,0.43,0.33,0.25,0.19,0.17,0.2,0.28,0.37,0.47,0.55,0.63,0.68,0.7,0.705,0.707,0.709,0.71,0.712,0.714,0.716,0.72,0.732,0.75,0.78,0.82,0.85,0.89,0.91,0.933,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.94,0.928,0.9,0.85,0.79,0.72,0.64,0.56,0.48,0.4,0.32,0.25,0.18,0.12,0.07,0.03,0.01,0
PARAM_MOUTH_OPEN_Y=0,0.018,0.06,0.13,0.21,0.28,0.35,0.41,0.45,0.48,0.49,0.497,0.499,0.5,0.45,0.38,0.31,0.26,0.24,0.31,0.42,0.5,0.52,0.5,0.45,0.39,0.33,0.28,0.259,0.31,0.39,0.46,0.51,0.53,0.522,0.49,0.46,0.43,0.39,0.37,0.349,0.342,0.37,0.42,0.46,0.49,0.5,0.47,0.4,0.31,0.22,0.13,0.06,0.02,0,0.05,0.14,0.23,0.3,0.35,0.39,0.43,0.45,0.473,0.486,0.494,0.499,0.5,0.482,0.44,0.4,0.35,0.3,0.26,0.24,0.23,0.26,0.31,0.38,0.46,0.52,0.58,0.62,0.63,0.627,0.62,0.611,0.602,0.593,0.586,0.582,0.58,0.588,0.61,0.64,0.68,0.71,0.75,0.78,0.8,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.8,0.77,0.73,0.68,0.62,0.55,0.48,0.41,0.34,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0
PARAM_BODY_ANGLE_X=0,0.001,0.005,0.012,0.023,0.037,0.055,0.08,0.1,0.13,0.17,0.21,0.26,0.31,0.37,0.44,0.51,0.59,0.68,0.78,0.88,0.99,1.2,1.51,1.9,2.34,2.79,3.24,3.68,4.84,6.04,7.05,7.74,8,7.9,7.62,7.19,6.61,5.9,5.09,4.2,3.24,2.23,1.18,0.15,-0.89,-1.9,-2.87,-3.75,-4.56,-5.27,-5.85,-6.29,-6.57,-6.66,-6.48,-5.98,-5.24,-4.31,-3.27,-2.18,-1.1,-0.09,0.8,1.55,2.11,2.46,2.58,2.46,2.2,1.88,1.54,1.23,0.98,0.81,0.75,1.35,2.66,4.3,5.99,7.54,8.83,9.68,10,9.43,8.2,6.67,5.08,3.63,2.43,1.63,1.33,1.44,1.73,2.18,2.74,3.38,4.08,4.82,5.57,6.32,7.04,7.72,8.35,8.9,9.36,9.7,9.92,10,9.95,9.81,9.58,9.28,8.93,8.51,8.05,7.56,7.04,6.49,5.93,5.36,4.78,4.22,3.67,3.12,2.61,2.13,1.67,1.27,0.91,0.6,0.34,0.16,0.04,0
PARAM_BODY_ANGLE_Z=0,-0.04,-0.15,-0.31,-0.51,-0.73,-0.97,-1.2,-1.42,-1.61,-1.78,-1.9,-1.97,-2,-1.82,-1.43,-0.95,-0.44,0.02,0.4,0.65,0.74,0.68,0.53,0.35,0.17,0.03,-0.06,-0.09,0.28,0.88,1.44,1.84,2,1.97,1.9,1.78,1.62,1.43,1.21,0.98,0.71,0.44,0.16,-0.12,-0.4,-0.67,-0.93,-1.17,-1.39,-1.58,-1.74,-1.86,-1.93,-1.96,-1.85,-1.56,-1.12,-0.57,0.04,0.69,1.33,1.92,2.45,2.89,3.22,3.43,3.5,3.4,3.19,2.92,2.65,2.4,2.19,2.05,2,2.07,2.21,2.38,2.57,2.73,2.87,2.97,3,2.87,2.59,2.23,1.87,1.53,1.25,1.07,1,1.04,1.14,1.3,1.52,1.76,2.05,2.35,2.67,3,3.35,3.59,3.75,3.86,3.93,3.97,3.99,4,3.98,3.92,3.83,3.71,3.57,3.41,3.22,3.02,2.82,2.6,2.37,2.14,1.91,1.69,1.47,1.25,1.05,0.85,0.67,0.51,0.36,0.24,0.14,0.06,0.02,0
PARAM_BREATH=0
PARAM_HAIR_FRONT=0
PARAM_HAIR_SIDE=0
PARAM_HAIR_BACK=0
PARAM_EYE_FORM=0
PARAM_EYE_BALL_FORM=1
PARAM_CHEEK_01=0,0.006,0.021,0.05,0.07,0.11,0.14,0.18,0.21,0.24,0.26,0.282,0.295,0.3,0.302,0.304,0.306,0.308,0.31,0.311,0.313,0.315,0.317,0.319,0.32,0.322,0.324,0.325,0.327,0.328,0.33,0.332,0.333,0.335,0.336,0.337,0.339,0.34,0.342,0.343,0.344,0.346,0.347,0.348,0.349,0.351,0.352,0.353,0.354,0.355,0.357,0.358,0.359,0.36,0.361,0.362,0.363,0.364,0.365,0.366,0.366,0.367,0.368,0.369,0.369,0.37,0.371,0.371,0.372,0.373,0.373,0.374,0.374,0.375,0.375,0.375,0.376,0.376,0.377,0.377,0.377,0.378,0.378,0.378,0.378,0.379,0.379,0.379,0.379,0.379,0.379,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.375,0.362,0.343,0.32,0.29,0.26,0.23,0.19,0.16,0.13,0.1,0.07,0.05,0.028,0.013,0.003,0
PARAM_UPBACK=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.016,0.033,0.06,0.08,0.11,0.14,0.17,0.2,0.22,0.25,0.28,0.3,0.315,0.328,0.337,0.34,0.338,0.333,0.325,0.315,0.302,0.287,0.27,0.252,0.232,0.21,0.191,0.17,0.15,0.128,0.11,0.088,0.07,0.053,0.038,0.025,0.015,0.007,0.002,0
PARAM_HAIR_TAIR=0
PARAM_ARM01=0,-0.018,-0.07,-0.14,-0.23,-0.33,-0.44,-0.54,-0.64,-0.73,-0.8,-0.86,-0.89,-0.903,-0.892,-0.86,-0.82,-0.77,-0.71,-0.66,-0.62,-0.59,-0.579,-0.593,-0.63,-0.67,-0.72,-0.75,-0.767,-0.75,-0.69,-0.61,-0.51,-0.41,-0.32,-0.23,-0.18,-0.16,-0.167,-0.19,-0.23,-0.26,-0.28,-0.294,-0.288,-0.272,-0.253,-0.234,-0.219,-0.209,-0.206,-0.211,-0.226,-0.25,-0.28,-0.31,-0.35,-0.39,-0.43,-0.48,-0.52,-0.56,-0.61,-0.65,-0.68,-0.72,-0.75,-0.77,-0.788,-0.799,-0.803,-0.803,-0.802,-0.801,-0.798,-0.793,-0.787,-0.779,-0.76,-0.72,-0.67,-0.63,-0.59,-0.57,-0.554,-0.543,-0.533,-0.524,-0.515,-0.507,-0.499,-0.491,-0.483,-0.475,-0.467,-0.459,-0.449,-0.44,-0.429,-0.418,-0.406,-0.39,-0.374,-0.357,-0.341,-0.325,-0.309,-0.293,-0.279,-0.265,-0.253,-0.241,-0.231,-0.222,-0.215,-0.21,-0.207,-0.206,-0.221,-0.26,-0.32,-0.39,-0.47,-0.54,-0.6,-0.64,-0.657,-0.61,-0.52,-0.41,-0.28,-0.17,-0.08,-0.02,0
PARAM_RARM02=0,0.77,1.53,2.3,3.07,3.83,4.6,4.56,4.51,4.47,4.43,4.39,4.34,4.3,4.311,4.322,4.333,4.344,4.356,4.367,4.378,4.389,4.4,4.35,4.3,4.25,4.2,4.15,4.1,4.19,4.27,4.36,4.45,4.53,4.62,4.71,4.79,4.88,4.884,4.887,4.89,4.894,4.897,4.9,4.914,4.929,4.943,4.957,4.971,4.986,5,4.97,4.93,4.9,4.86,4.83,4.79,4.76,4.72,4.69,4.65,4.62,4.58,4.55,4.51,4.48,4.44,4.41,4.37,4.34,4.3,4.33,4.37,4.4,4.44,4.47,4.5,4.54,4.45,4.36,4.27,4.18,4.09,4,4.06,4.12,4.18,4.24,4.29,4.35,4.41,4.47,4.53,4.59,4.65,4.71,4.76,4.82,4.88,4.94,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.71,4.41,4.12,3.82,3.53,3.24,2.94,2.65,2.35,2.06,1.76,1.47,1.18,0.88,0.59,0.29,0
PARAM_RARM03=0,-0.006,-0.021,-0.04,-0.07,-0.1,-0.14,-0.17,-0.2,-0.23,-0.25,-0.266,-0.277,-0.28,-0.23,-0.08,0.13,0.37,0.63,0.88,1.09,1.23,1.28,1.21,1.03,0.79,0.55,0.37,0.3,0.36,0.52,0.75,1.03,1.31,1.58,1.81,1.97,2.03,1.99,1.87,1.72,1.56,1.45,1.4,1.45,1.56,1.7,1.83,1.94,2.01,2.03,2.016,1.96,1.89,1.78,1.66,1.53,1.38,1.23,1.08,0.92,0.76,0.61,0.47,0.34,0.22,0.12,0.04,-0.03,-0.07,-0.08,0.01,0.22,0.47,0.72,0.92,1.05,1.09,1.03,0.89,0.7,0.5,0.36,0.3,0.308,0.328,0.36,0.4,0.44,0.49,0.54,0.59,0.65,0.7,0.74,0.79,0.82,0.86,0.88,0.895,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.889,0.86,0.81,0.75,0.69,0.62,0.54,0.46,0.38,0.31,0.24,0.17,0.11,0.07,0.03,0.01,0
PARAM_LARM01=0,0.03,0.11,0.21,0.31,0.39,0.42,0.38,0.28,0.15,0.02,-0.07,-0.14,-0.16,-0.15,-0.12,-0.09,-0.04,0,0.04,0.08,0.11,0.116,0.08,-0.02,-0.14,-0.26,-0.36,-0.4,-0.37,-0.31,-0.22,-0.11,0,0.1,0.19,0.26,0.28,0.278,0.272,0.265,0.257,0.252,0.25,0.259,0.28,0.31,0.34,0.36,0.372,0.377,0.369,0.35,0.31,0.27,0.21,0.15,0.09,0.02,-0.05,-0.12,-0.19,-0.25,-0.31,-0.37,-0.43,-0.47,-0.51,-0.54,-0.553,-0.559,-0.52,-0.41,-0.29,-0.17,-0.07,0,0.016,-0.01,-0.09,-0.19,-0.29,-0.37,-0.4,-0.389,-0.37,-0.34,-0.3,-0.26,-0.21,-0.17,-0.12,-0.07,-0.02,0.03,0.07,0.1,0.13,0.16,0.172,0.177,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.18,0.187,0.21,0.25,0.3,0.35,0.4,0.44,0.46,0.475,0.44,0.38,0.29,0.21,0.13,0.06,0.02,0
PARAM_LARM02=0,-0.29,-1.01,-1.99,-3,-3.84,-4.32,-4.54,-4.68,-4.75,-4.79,-4.801,-4.801,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.815,-4.85,-4.9,-4.95,-4.98,-5,-4.97,-4.9,-4.79,-4.67,-4.53,-4.41,-4.3,-4.23,-4.2,-4.208,-4.226,-4.25,-4.27,-4.292,-4.3,-4.26,-4.15,-4.02,-3.89,-3.79,-3.72,-3.7,-3.71,-3.74,-3.78,-3.83,-3.89,-3.96,-4.04,-4.12,-4.2,-4.28,-4.36,-4.44,-4.51,-4.58,-4.64,-4.7,-4.74,-4.77,-4.79,-4.8,-4.785,-4.75,-4.71,-4.66,-4.63,-4.61,-4.6,-4.63,-4.7,-4.8,-4.9,-4.97,-5,-4.995,-4.983,-4.963,-4.94,-4.91,-4.87,-4.83,-4.79,-4.75,-4.71,-4.66,-4.62,-4.57,-4.53,-4.48,-4.44,-4.4,-4.36,-4.32,-4.29,-4.26,-4.24,-4.22,-4.201,-4.182,-4.161,-4.14,-4.12,-4.09,-4.06,-4.03,-3.99,-3.95,-3.9,-3.8,-3.63,-3.4,-3.14,-2.84,-2.53,-2.2,-1.88,-1.55,-1.24,-0.95,-0.69,-0.46,-0.27,-0.12,-0.03,0
PARAM_LARM03=0,-0.06,-0.21,-0.43,-0.71,-1.02,-1.35,-1.68,-1.98,-2.25,-2.48,-2.65,-2.75,-2.79,-2.73,-2.57,-2.33,-2.05,-1.76,-1.48,-1.24,-1.08,-1.02,-1.15,-1.47,-1.9,-2.33,-2.66,-2.79,-2.67,-2.36,-1.91,-1.37,-0.82,-0.28,0.17,0.48,0.6,0.593,0.577,0.55,0.53,0.516,0.51,0.516,0.532,0.552,0.571,0.587,0.597,0.6,0.57,0.49,0.36,0.2,0.01,-0.21,-0.44,-0.69,-0.94,-1.19,-1.44,-1.68,-1.9,-2.11,-2.3,-2.47,-2.6,-2.7,-2.77,-2.79,-2.67,-2.38,-2.03,-1.69,-1.42,-1.24,-1.18,-1.3,-1.6,-1.99,-2.38,-2.67,-2.79,-2.75,-2.63,-2.46,-2.24,-1.99,-1.72,-1.43,-1.13,-0.84,-0.56,-0.29,-0.05,0.17,0.35,0.48,0.57,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.592,0.572,0.54,0.5,0.46,0.41,0.36,0.31,0.25,0.2,0.16,0.11,0.08,0.04,0.02,0.005,0
PARAM_LHandFB=0
PARAM_RHandFB=0
PARAM_hand_00=0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0
PARAM_hand_01=0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0
PARAM_hand_02=0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -0,0 +1,23 @@
{
"posted": "Dreamer-Paul",
"model": "model.moc",
"textures": [
"textures/texture_00.png"
],
"layout": {
"center_x": 0.0,
"center_y": 0.0,
"width": 2.0
},
"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/idle/idle.mtn"}
]
}
}

Binary file not shown.

View File

@@ -0,0 +1,54 @@
# Live2D Animator Motion Data
$fps=30
$fadein=0
$fadeout=0
PARAM_ANGLE_X=0,0.01,0.04,0.09,0.15,0.23,0.34,0.45,0.59,0.74,0.9,1.09,1.28,1.49,1.72,1.95,2.2,2.47,2.74,3.03,3.33,3.63,3.96,4.29,4.63,4.98,5.34,5.7,6.08,6.46,6.85,7.25,7.66,8.07,8.49,8.91,9.33,9.76,10.2,10.64,11.09,11.53,11.98,12.43,12.89,13.34,13.8,14.25,14.71,15.18,15.63,16.09,16.55,16.99,17.45,17.9,18.35,18.8,19.23,19.68,20.11,20.54,20.96,21.38,21.8,22.21,22.61,23,23.4,23.77,24.15,24.51,24.87,25.22,25.56,25.89,26.21,26.52,26.82,27.11,27.38,27.65,27.9,28.14,28.37,28.58,28.78,28.97,29.14,29.3,29.44,29.57,29.68,29.78,29.86,29.92,29.96,29.99,30,29.95,29.78,29.52,29.15,28.7,28.15,27.51,26.8,25.99,25.12,24.17,23.15,22.06,20.94,19.75,18.5,17.2,15.88,14.51,13.09,11.63,10.17,8.68,7.15,5.64,4.08,2.55,0.97,-0.57,-2.15,-3.68,-5.23,-6.76,-8.25,-9.75,-11.2,-12.65,-14.04,-15.4,-16.72,-18,-19.24,-20.43,-21.56,-22.64,-23.65,-24.6,-25.49,-26.3,-27.05,-27.72,-28.3,-28.81,-29.23,-29.56,-29.8,-29.95,-30,-29.97,-29.88,-29.73,-29.53,-29.28,-28.97,-28.62,-28.22,-27.78,-27.3,-26.78,-26.22,-25.63,-25.01,-24.36,-23.67,-22.98,-22.25,-21.5,-20.74,-19.97,-19.17,-18.37,-17.56,-16.74,-15.92,-15.11,-14.28,-13.46,-12.65,-11.84,-11.04,-10.26,-9.49,-8.74,-8,-7.28,-6.58,-5.91,-5.26,-4.64,-4.05,-3.5,-2.97,-2.49,-2.04,-1.63,-1.26,-0.94,-0.66,-0.42,-0.24,-0.11,-0.03
PARAM_ANGLE_Y=0,0.01,0.04,0.09,0.15,0.23,0.34,0.45,0.59,0.74,0.9,1.09,1.28,1.49,1.72,1.95,2.2,2.47,2.74,3.03,3.33,3.63,3.96,4.29,4.63,4.98,5.34,5.7,6.08,6.46,6.85,7.25,7.66,8.07,8.49,8.91,9.33,9.76,10.2,10.64,11.09,11.53,11.98,12.43,12.89,13.34,13.8,14.25,14.71,15.18,15.63,16.09,16.55,16.99,17.45,17.9,18.35,18.8,19.23,19.68,20.11,20.54,20.96,21.38,21.8,22.21,22.61,23,23.4,23.77,24.15,24.51,24.87,25.22,25.56,25.89,26.21,26.52,26.82,27.11,27.38,27.65,27.9,28.14,28.37,28.58,28.78,28.97,29.14,29.3,29.44,29.57,29.68,29.78,29.86,29.92,29.96,29.99,30,29.97,29.9,29.77,29.58,29.34,29.04,28.68,28.26,27.77,27.22,26.6,25.9,25.14,24.3,23.38,22.39,21.32,20.16,18.94,17.62,16.21,14.73,13.15,11.47,9.69,7.82,5.85,-0.58,-8.41,-15.31,-20.14,-22,-17.53,-10.38,-3.7,1.12,3,-0.6,-8.26,-16,-22.59,-25.61,-27.14,-27.82,-28,-23.01,-13.99,-9,-9.59,-11.12,-13.33,-15.87,-18.49,-20.95,-23.04,-24.64,-25.64,-26,-25.97,-25.9,-25.77,-25.59,-25.37,-25.11,-24.8,-24.46,-24.08,-23.66,-23.21,-22.72,-22.21,-21.68,-21.11,-20.52,-19.91,-19.29,-18.64,-17.98,-17.31,-16.61,-15.92,-15.22,-14.51,-13.8,-13.1,-12.37,-11.67,-10.96,-10.26,-9.57,-8.89,-8.23,-7.57,-6.93,-6.31,-5.71,-5.12,-4.56,-4.02,-3.51,-3.03,-2.58,-2.16,-1.77,-1.41,-1.09,-0.81,-0.57,-0.37,-0.21,-0.09,-0.02
PARAM_ANGLE_Z=0,-0.15,-0.59,-1.25,-2.14,-3.18,-4.36,-5.64,-6.96,-8.33,-9.69,-11.01,-12.24,-13.39,-14.42,-15.31,-16.02,-16.55,-16.89,-17,-16.97,-16.87,-16.72,-16.5,-16.24,-15.91,-15.54,-15.11,-14.65,-14.13,-13.56,-12.96,-12.32,-11.64,-10.93,-10.18,-9.4,-8.58,-7.74,-6.89,-6,-5.08,-4.16,-3.22,-2.24,-1.27,-0.26,0.74,1.74,2.76,3.79,4.81,5.85,6.88,7.91,8.94,9.97,10.98,12,13,13.99,14.95,15.91,16.86,17.77,18.68,19.57,20.42,21.26,22.05,22.84,23.59,24.3,24.97,25.62,26.22,26.8,27.32,27.81,28.25,28.64,29,29.29,29.54,29.74,29.88,29.97,30,29.97,29.89,29.76,29.58,29.35,29.08,28.76,28.4,28,27.55,27.07,26.55,25.99,25.41,24.79,24.13,23.46,22.75,22.01,21.26,20.47,19.67,18.86,18.01,17.16,16.28,15.4,14.51,13.59,12.68,11.76,10.83,9.9,8.97,8.03,7.1,6.17,5.24,4.32,3.41,2.49,1.6,0.72,-0.16,-1.01,-1.86,-2.67,-3.47,-4.26,-5.01,-5.75,-6.46,-7.13,-7.79,-8.41,-8.99,-9.55,-10.07,-10.55,-11,-11.4,-11.76,-12.08,-12.35,-12.58,-12.76,-12.89,-12.97,-13,-12.987,-12.95,-12.88,-12.8,-12.69,-12.55,-12.4,-12.23,-12.04,-11.83,-11.6,-11.36,-11.11,-10.84,-10.55,-10.26,-9.96,-9.64,-9.32,-8.99,-8.65,-8.31,-7.96,-7.61,-7.26,-6.9,-6.55,-6.19,-5.83,-5.48,-5.13,-4.79,-4.45,-4.11,-3.79,-3.47,-3.16,-2.85,-2.56,-2.28,-2.01,-1.76,-1.52,-1.29,-1.08,-0.88,-0.71,-0.55,-0.41,-0.29,-0.18,-0.1,-0.05,-0.01
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,1,1,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.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0.782,0.794,0.805,0.816,0.826,0.837,0.847,0.856,0.866,0.874,0.883,0.891,0.9,0.907,0.915,0.922,0.928,0.935,0.941,0.947,0.952,0.958,0.962,0.967,0.971,0.975,0.979,0.982,0.985,0.988,0.991,0.993,0.995,0.996,0.998,0.999,0.999,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.26,0.74
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,1,1,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.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0.782,0.794,0.805,0.816,0.826,0.837,0.847,0.856,0.866,0.874,0.883,0.891,0.9,0.907,0.915,0.922,0.928,0.935,0.941,0.947,0.952,0.958,0.962,0.967,0.971,0.975,0.979,0.982,0.985,0.988,0.991,0.993,0.995,0.996,0.998,0.999,0.999,1,1,0.96,0.89,0.83,0.79,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0.83,0.94
PARAM_EYE_BALL_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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.05,0.1,0.16,0.23,0.29,0.34,0.38,0.39,0.387,0.38,0.368,0.353,0.334,0.31,0.29,0.26,0.24,0.21,0.18,0.15,0.13,0.1,0.08,0.06,0.037,0.022,0.01,0.003
PARAM_EYE_BALL_Y=0
PARAM_BROW_L_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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,-0.82,-0.54,-0.27,-0.08
PARAM_BROW_R_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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.09,-0.24,-0.34,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.37,-0.3,-0.2,-0.1,-0.03
PARAM_MOUTH_OPEN_Y=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.27,0,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.13,0.26,0.42,0.58,0.74,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,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73
PARAM_BODY_ANGLE_X=0,0.03,0.13,0.28,0.49,0.74,1.04,1.37,1.75,2.15,2.58,3.03,3.49,3.97,4.45,4.94,5.42,5.9,6.38,6.84,7.28,7.7,8.1,8.46,8.8,9.1,9.37,9.59,9.76,9.89,9.97,10,9.97,9.86,9.7,9.47,9.19,8.85,8.47,8.04,7.56,7.06,6.51,5.94,5.33,4.71,4.06,3.4,2.72,2.04,1.34,0.66,-0.04,-0.72,-1.4,-2.06,-2.71,-3.33,-3.94,-4.51,-5.06,-5.56,-6.04,-6.47,-6.85,-7.19,-7.47,-7.7,-7.86,-7.97,-8,-7.96,-7.84,-7.64,-7.38,-7.06,-6.67,-6.22,-5.73,-5.19,-4.6,-3.98,-3.33,-2.65,-1.96,-1.23,-0.5,0.25,1,1.75,2.5,3.23,3.96,4.65,5.33,5.98,6.6,7.19,7.73,8.22,8.67,9.06,9.38,9.64,9.84,9.96,10,9.97,9.9,9.77,9.59,9.35,9.07,8.73,8.34,7.89,7.39,6.85,6.26,5.61,4.92,4.18,3.4,2.59,1.72,0.82,-0.47,-1.38,-1.86,-2,-1.77,-1.23,-0.5,0.23,0.77,1,0.9,0.63,0.22,-0.3,-0.88,-1.5,-2.12,-2.7,-3.22,-3.63,-3.9,-4,-3.997,-3.988,-3.974,-3.954,-3.93,-3.9,-3.86,-3.82,-3.78,-3.73,-3.68,-3.62,-3.56,-3.5,-3.43,-3.36,-3.28,-3.21,-3.13,-3.05,-2.97,-2.88,-2.79,-2.71,-2.62,-2.52,-2.43,-2.34,-2.25,-2.15,-2.06,-1.96,-1.87,-1.78,-1.68,-1.59,-1.5,-1.41,-1.32,-1.23,-1.15,-1.06,-0.98,-0.9,-0.82,-0.75,-0.67,-0.6,-0.54,-0.47,-0.41,-0.35,-0.3,-0.25,-0.21,-0.16,-0.13,-0.09,-0.07,-0.04,-0.024,-0.011,-0.003
PARAM_BODY_ANGLE_Y=0,0.03,0.13,0.28,0.49,0.74,1.04,1.37,1.75,2.15,2.58,3.03,3.49,3.97,4.45,4.94,5.42,5.9,6.38,6.84,7.28,7.7,8.1,8.46,8.8,9.1,9.37,9.59,9.76,9.89,9.97,10,9.96,9.85,9.66,9.41,9.1,8.73,8.29,7.82,7.29,6.73,6.12,5.49,4.81,4.12,3.4,2.67,1.91,1.15,0.38,-0.38,-1.15,-1.91,-2.67,-3.4,-4.12,-4.81,-5.49,-6.12,-6.73,-7.29,-7.82,-8.29,-8.73,-9.1,-9.41,-9.66,-9.85,-9.96,-10,-9.87,-9.5,-8.9,-8.1,-7.16,-6.07,-4.85,-3.59,-2.24,-0.86,0.53,1.87,3.2,4.46,5.64,6.7,7.65,8.46,9.11,9.6,9.9,10,9.92,9.69,9.31,8.82,8.2,7.49,6.67,5.8,4.85,3.86,2.81,1.75,0.67,-0.41,-1.47,-2.52,-3.56,-4.53,-5.46,-6.33,-7.13,-7.84,-8.47,-9.01,-9.43,-9.74,-9.94,-10,-9.98,-9.92,-9.82,-9.69,-9.52,-9.32,-9.09,-8.83,-8.54,-8.23,-7.89,-7.53,-7.15,-6.74,-6.32,-5.88,-5.42,-4.95,-4.48,-3.99,-3.48,-2.97,-2.45,-1.92,-1.4,-0.86,-0.34,0.21,0.73,1.26,1.79,2.31,2.82,3.33,3.84,4.32,4.8,5.26,5.71,6.14,6.57,6.97,7.35,7.71,8.05,8.37,8.66,8.93,9.17,9.38,9.56,9.72,9.84,9.93,9.98,10,9.97,9.89,9.77,9.6,9.4,9.15,8.88,8.57,8.25,7.89,7.52,7.13,6.73,6.32,5.9,5.48,5.05,4.63,4.2,3.79,3.39,2.99,2.61,2.24,1.89,1.57,1.27,0.99,0.74,0.53,0.34,0.2,0.09,0.02
PARAM_BODY_ANGLE_Z=0,0.03,0.13,0.28,0.49,0.74,1.04,1.37,1.75,2.15,2.58,3.03,3.49,3.97,4.45,4.94,5.42,5.9,6.38,6.84,7.28,7.7,8.1,8.46,8.8,9.1,9.37,9.59,9.76,9.89,9.97,10,9.993,9.973,9.94,9.89,9.83,9.76,9.68,9.58,9.47,9.35,9.21,9.06,8.9,8.73,8.55,8.35,8.14,7.93,7.69,7.44,7.19,6.92,6.64,6.35,6.05,5.73,5.4,5.06,4.71,4.35,3.97,3.58,3.19,2.77,2.35,1.91,1.46,1,0,-0.94,-1.81,-2.66,-3.46,-4.19,-4.89,-5.55,-6.14,-6.7,-7.21,-7.68,-8.09,-8.47,-8.8,-9.09,-9.34,-9.55,-9.71,-9.84,-9.93,-9.98,-10,-9.96,-9.86,-9.68,-9.45,-9.16,-8.81,-8.42,-7.98,-7.51,-7,-6.45,-5.89,-5.3,-4.7,-4.09,-3.47,-2.85,-2.24,-1.62,-1.02,-0.44,0.12,0.67,1.18,1.65,2.09,2.48,2.83,3.12,3.35,3.53,3.64,3.67,3.67,3.666,3.658,3.648,3.635,3.619,3.6,3.58,3.56,3.53,3.5,3.47,3.44,3.4,3.37,3.33,3.29,3.24,3.2,3.15,3.11,3.06,3.01,2.96,2.9,2.85,2.79,2.74,2.68,2.62,2.56,2.5,2.44,2.38,2.32,2.26,2.19,2.13,2.07,2,1.94,1.88,1.81,1.75,1.68,1.62,1.56,1.49,1.43,1.37,1.31,1.25,1.19,1.13,1.07,1.01,0.95,0.9,0.84,0.79,0.74,0.69,0.64,0.59,0.54,0.49,0.45,0.41,0.37,0.33,0.29,0.25,0.22,0.19,0.16,0.13,0.11,0.09,0.068,0.05,0.035,0.022,0.013,0.006,0.001
PARAM_HAIR_FRONT=0,0.008,0.03,0.06,0.11,0.16,0.21,0.27,0.32,0.38,0.43,0.49,0.53,0.58,0.61,0.64,0.654,0.66,0.649,0.62,0.57,0.51,0.44,0.35,0.26,0.16,0.06,-0.04,-0.15,-0.26,-0.36,-0.46,-0.56,-0.65,-0.73,-0.8,-0.87,-0.92,-0.96,-0.98,-0.99,-0.981,-0.96,-0.92,-0.86,-0.8,-0.73,-0.65,-0.56,-0.47,-0.37,-0.27,-0.17,-0.07,0.03,0.12,0.22,0.31,0.4,0.48,0.55,0.61,0.67,0.71,0.74,0.763,0.77,0.766,0.752,0.73,0.7,0.67,0.63,0.58,0.53,0.47,0.41,0.35,0.28,0.22,0.15,0.08,0.02,-0.05,-0.12,-0.18,-0.24,-0.3,-0.36,-0.41,-0.45,-0.5,-0.53,-0.56,-0.59,-0.605,-0.616,-0.62,-0.609,-0.58,-0.53,-0.46,-0.38,-0.3,-0.2,-0.1,0.01,0.11,0.21,0.31,0.39,0.47,0.54,0.59,0.62,0.63,0.621,0.6,0.56,0.51,0.45,0.38,0.3,0.22,0.13,0.04,-0.05,-0.14,-0.22,-0.3,-0.38,-0.45,-0.51,-0.56,-0.6,-0.63,-0.653,-0.66,-0.654,-0.638,-0.61,-0.58,-0.53,-0.48,-0.43,-0.37,-0.3,-0.23,-0.16,-0.08,-0.01,0.07,0.14,0.22,0.29,0.36,0.42,0.48,0.54,0.59,0.63,0.67,0.7,0.72,0.735,0.74,0.735,0.722,0.7,0.67,0.64,0.6,0.55,0.5,0.45,0.4,0.34,0.28,0.22,0.16,0.1,0.04,-0.02,-0.07,-0.13,-0.17,-0.22,-0.26,-0.29,-0.32,-0.35,-0.365,-0.376,-0.38,-0.377,-0.367,-0.352,-0.332,-0.31,-0.28,-0.25,-0.22,-0.19,-0.16,-0.13,-0.1,-0.07,-0.05,-0.028,-0.013,-0.003
PARAM_HAIR_SIDE=0,0.004,0.013,0.027,0.045,0.07,0.09,0.11,0.14,0.16,0.18,0.21,0.227,0.245,0.259,0.27,0.277,0.28,0.272,0.25,0.21,0.17,0.11,0.05,-0.03,-0.1,-0.18,-0.26,-0.34,-0.42,-0.5,-0.58,-0.65,-0.72,-0.78,-0.84,-0.89,-0.93,-0.96,-0.974,-0.98,-0.98,-0.98,-0.979,-0.978,-0.978,-0.976,-0.975,-0.974,-0.972,-0.97,-0.968,-0.966,-0.964,-0.961,-0.959,-0.956,-0.953,-0.95,-0.946,-0.943,-0.939,-0.936,-0.932,-0.927,-0.923,-0.919,-0.914,-0.91,-0.905,-0.9,-0.895,-0.89,-0.885,-0.879,-0.874,-0.868,-0.862,-0.856,-0.85,-0.844,-0.838,-0.832,-0.825,-0.819,-0.812,-0.805,-0.799,-0.792,-0.785,-0.778,-0.771,-0.763,-0.756,-0.749,-0.741,-0.733,-0.726,-0.718,-0.711,-0.703,-0.695,-0.687,-0.679,-0.671,-0.663,-0.655,-0.647,-0.638,-0.63,-0.622,-0.614,-0.605,-0.597,-0.588,-0.58,-0.571,-0.563,-0.554,-0.546,-0.537,-0.529,-0.52,-0.512,-0.503,-0.494,-0.486,-0.477,-0.468,-0.46,-0.451,-0.443,-0.434,-0.426,-0.417,-0.409,-0.4,-0.392,-0.383,-0.375,-0.366,-0.358,-0.35,-0.342,-0.333,-0.325,-0.317,-0.309,-0.301,-0.293,-0.285,-0.277,-0.269,-0.262,-0.254,-0.247,-0.239,-0.231,-0.224,-0.217,-0.209,-0.202,-0.195,-0.188,-0.181,-0.175,-0.168,-0.161,-0.155,-0.148,-0.142,-0.136,-0.13,-0.124,-0.118,-0.112,-0.106,-0.101,-0.095,-0.09,-0.085,-0.08,-0.075,-0.07,-0.066,-0.061,-0.057,-0.053,-0.048,-0.044,-0.041,-0.037,-0.034,-0.03,-0.027,-0.024,-0.021,-0.019,-0.016,-0.014,-0.012,-0.01,-0.008,-0.006,-0.005,-0.004,-0.002,-0.002,-0.001,0,0
PARAM_HAIR_BACK=0,0.003,0.01,0.019,0.027,0.034,0.039,0.04,0.036,0.026,0.011,-0.01,-0.03,-0.06,-0.09,-0.13,-0.17,-0.2,-0.24,-0.29,-0.33,-0.37,-0.41,-0.46,-0.5,-0.55,-0.59,-0.63,-0.66,-0.7,-0.73,-0.75,-0.78,-0.8,-0.819,-0.836,-0.851,-0.864,-0.875,-0.884,-0.892,-0.898,-0.902,-0.906,-0.908,-0.91,-0.91,-0.91,-0.909,-0.906,-0.903,-0.898,-0.892,-0.883,-0.873,-0.861,-0.846,-0.829,-0.81,-0.79,-0.76,-0.73,-0.7,-0.67,-0.63,-0.59,-0.54,-0.49,-0.44,-0.39,-0.34,-0.29,-0.24,-0.2,-0.15,-0.1,-0.06,-0.01,0.03,0.07,0.12,0.16,0.2,0.24,0.28,0.32,0.35,0.39,0.43,0.46,0.5,0.53,0.56,0.59,0.62,0.65,0.68,0.7,0.73,0.75,0.78,0.8,0.82,0.841,0.86,0.877,0.893,0.908,0.921,0.933,0.944,0.953,0.961,0.968,0.973,0.977,0.979,0.98,0.979,0.974,0.967,0.958,0.945,0.931,0.913,0.894,0.87,0.85,0.82,0.79,0.76,0.73,0.69,0.66,0.62,0.58,0.53,0.49,0.44,0.39,0.34,0.29,0.24,0.18,0.12,0.06,0,-0.06,-0.12,-0.18,-0.24,-0.29,-0.35,-0.39,-0.44,-0.49,-0.53,-0.57,-0.61,-0.64,-0.68,-0.71,-0.74,-0.76,-0.79,-0.81,-0.83,-0.851,-0.868,-0.883,-0.895,-0.906,-0.915,-0.921,-0.926,-0.929,-0.93,-0.927,-0.92,-0.909,-0.893,-0.874,-0.85,-0.83,-0.8,-0.77,-0.73,-0.7,-0.66,-0.63,-0.59,-0.55,-0.51,-0.47,-0.43,-0.39,-0.35,-0.31,-0.28,-0.24,-0.21,-0.18,-0.15,-0.12,-0.09,-0.07,-0.049,-0.032,-0.018,-0.008,-0.002
PARAM_HAIR_BACK_Y=0,-0.03,-0.09,-0.18,-0.27,-0.36,-0.44,-0.5,-0.58,-0.64,-0.7,-0.75,-0.8,-0.83,-0.87,-0.9,-0.92,-0.942,-0.959,-0.973,-0.983,-0.991,-0.996,-0.999,-1,-0.992,-0.97,-0.94,-0.89,-0.83,-0.77,-0.7,-0.62,-0.55,-0.47,-0.38,-0.31,-0.23,-0.15,-0.09,-0.02,0.03,0.08,0.12,0.15,0.164,0.17,0.169,0.164,0.158,0.15,0.14,0.129,0.118,0.105,0.093,0.08,0.068,0.056,0.044,0.034,0.024,0.016,0.009,0.004,0.001,0,0.001,0.004,0.01,0.018,0.027,0.038,0.051,0.066,0.082,0.1,0.12,0.14,0.16,0.18,0.21,0.23,0.26,0.29,0.31,0.34,0.37,0.4,0.43,0.46,0.49,0.51,0.54,0.57,0.6,0.63,0.66,0.69,0.71,0.74,0.77,0.79,0.82,0.84,0.86,0.88,0.9,0.918,0.934,0.949,0.962,0.973,0.982,0.99,0.996,0.999,1,0.992,0.97,0.93,0.88,0.83,0.76,0.68,0.6,0.51,0.41,0.32,0.22,0.12,0.01,-0.09,-0.19,-0.29,-0.39,-0.48,-0.57,-0.65,-0.72,-0.79,-0.85,-0.9,-0.94,-0.97,-0.994,-1,-1,-1,-1,-1,-1,-1,-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.989,-0.977,-0.96,-0.94,-0.92,-0.89,-0.86,-0.82,-0.79,-0.75,-0.71,-0.67,-0.63,-0.59,-0.55,-0.51,-0.46,-0.42,-0.38,-0.34,-0.3,-0.26,-0.22,-0.19,-0.16,-0.13,-0.1,-0.07,-0.05,-0.034,-0.02,-0.009,-0.002
PARAM_ARM_L=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.98,-3.92,-3.82,-3.69,-3.52,-3.32,-3.09,-2.83,-2.54,-2.23,-1.9,-1.55,-1.17,-0.78,-0.37,0.05,0.49,0.93,1.38,1.84,2.3,2.76,3.24,3.7,4.16,4.62,5.07,5.51,5.95,6.37,6.78,7.17,7.55,7.9,8.23,8.54,8.83,9.09,9.32,9.52,9.69,9.82,9.92,9.98,10,9.998,9.993,9.985,9.973,9.958,9.94,9.92,9.89,9.87,9.84,9.8,9.77,9.73,9.69,9.64,9.59,9.55,9.49,9.44,9.38,9.32,9.26,9.19,9.13,9.06,8.99,8.92,8.84,8.76,8.68,8.6,8.52,8.44,8.35,8.26,8.17,8.08,7.99,7.9,7.8,7.71,7.61,7.51,7.41,7.31,7.2,7.1,6.99,6.89,6.78,6.68,6.57,6.46,6.35,6.24,6.13,6.02,5.9,5.79,5.68,5.57,5.45,5.34,5.23,5.11,5,4.89,4.77,4.66,4.55,4.43,4.32,4.21,4.1,3.98,3.87,3.76,3.65,3.54,3.43,3.32,3.22,3.11,3.01,2.9,2.8,2.69,2.59,2.49,2.39,2.29,2.2,2.1,2.01,1.92,1.83,1.74,1.65,1.56,1.48,1.4,1.32,1.24,1.16,1.08,1.01,0.94,0.87,0.81,0.74,0.68,0.62,0.56,0.51,0.45,0.41,0.36,0.31,0.27,0.23,0.2,0.16,0.13,0.11,0.08,0.06,0.042,0.027,0.015,0.007,0.002
PARAM_ARM_R=0,-0.03,-0.11,-0.25,-0.44,-0.67,-0.93,-1.24,-1.57,-1.93,-2.32,-2.72,-3.14,-3.57,-4.01,-4.45,-4.88,-5.31,-5.74,-6.15,-6.55,-6.93,-7.29,-7.62,-7.92,-8.19,-8.43,-8.63,-8.79,-8.9,-8.98,-9,-8.987,-8.95,-8.88,-8.79,-8.68,-8.54,-8.38,-8.2,-8,-7.78,-7.55,-7.29,-7.02,-6.73,-6.43,-6.11,-5.78,-5.44,-5.08,-4.72,-4.35,-3.96,-3.57,-3.17,-2.77,-2.36,-1.95,-1.53,-1.11,-0.68,-0.26,0.16,0.58,1,1.42,1.83,2.25,2.65,3.06,3.45,3.84,4.22,4.6,4.95,5.3,5.65,5.98,6.29,6.59,6.88,7.15,7.41,7.65,7.87,8.08,8.26,8.43,8.58,8.7,8.81,8.89,8.95,8.99,9,8.998,8.992,8.982,8.968,8.95,8.93,8.9,8.87,8.84,8.81,8.77,8.72,8.68,8.63,8.58,8.52,8.46,8.4,8.34,8.27,8.2,8.13,8.06,7.98,7.9,7.82,7.74,7.65,7.56,7.48,7.38,7.29,7.2,7.1,7,6.9,6.8,6.7,6.59,6.49,6.38,6.27,6.16,6.06,5.95,5.83,5.72,5.61,5.49,5.38,5.27,5.15,5.04,4.92,4.8,4.69,4.57,4.46,4.34,4.22,4.11,3.99,3.88,3.76,3.65,3.53,3.42,3.31,3.2,3.09,2.98,2.87,2.76,2.65,2.55,2.44,2.34,2.23,2.13,2.03,1.94,1.84,1.75,1.65,1.56,1.47,1.39,1.3,1.22,1.14,1.06,0.98,0.91,0.84,0.77,0.7,0.63,0.57,0.51,0.46,0.41,0.36,0.31,0.26,0.22,0.19,0.15,0.12,0.09,0.07,0.05,0.031,0.017,0.008,0.002
PARAM_FOOT_L=0,-0.001,-0.005,-0.012,-0.02,-0.03,-0.043,-0.056,-0.072,-0.088,-0.106,-0.124,-0.143,-0.163,-0.183,-0.203,-0.222,-0.242,-0.261,-0.28,-0.299,-0.316,-0.332,-0.347,-0.361,-0.373,-0.384,-0.393,-0.4,-0.406,-0.409,-0.41,-0.409,-0.406,-0.402,-0.396,-0.388,-0.378,-0.367,-0.355,-0.341,-0.326,-0.309,-0.292,-0.273,-0.253,-0.23,-0.21,-0.19,-0.16,-0.14,-0.11,-0.09,-0.06,-0.03,0,0.03,0.06,0.08,0.11,0.14,0.17,0.21,0.24,0.27,0.3,0.33,0.36,0.39,0.42,0.45,0.48,0.51,0.53,0.56,0.59,0.62,0.64,0.67,0.69,0.72,0.74,0.76,0.78,0.803,0.821,0.839,0.856,0.872,0.886,0.899,0.911,0.921,0.929,0.937,0.943,0.947,0.949,0.95,0.947,0.938,0.924,0.905,0.88,0.85,0.82,0.78,0.74,0.7,0.65,0.6,0.55,0.5,0.44,0.39,0.33,0.27,0.21,0.16,0.1,0.04,-0.02,-0.07,-0.13,-0.18,-0.23,-0.28,-0.33,-0.37,-0.41,-0.45,-0.48,-0.51,-0.54,-0.554,-0.568,-0.577,-0.58,-0.58,-0.579,-0.577,-0.575,-0.572,-0.569,-0.565,-0.56,-0.555,-0.55,-0.544,-0.538,-0.531,-0.524,-0.516,-0.508,-0.5,-0.491,-0.482,-0.473,-0.463,-0.453,-0.443,-0.433,-0.422,-0.411,-0.4,-0.389,-0.378,-0.367,-0.356,-0.344,-0.332,-0.321,-0.309,-0.297,-0.286,-0.274,-0.262,-0.251,-0.239,-0.228,-0.216,-0.205,-0.194,-0.183,-0.172,-0.161,-0.151,-0.14,-0.131,-0.121,-0.111,-0.102,-0.093,-0.084,-0.076,-0.068,-0.06,-0.053,-0.046,-0.04,-0.034,-0.028,-0.023,-0.018,-0.014,-0.011,-0.007,-0.005,-0.003,-0.001,0
PARAM_FOOT_R=0,-0.001,-0.003,-0.008,-0.013,-0.02,-0.028,-0.037,-0.047,-0.058,-0.07,-0.082,-0.094,-0.107,-0.12,-0.133,-0.146,-0.159,-0.172,-0.185,-0.197,-0.208,-0.219,-0.229,-0.238,-0.246,-0.253,-0.259,-0.264,-0.267,-0.269,-0.27,-0.27,-0.269,-0.268,-0.267,-0.265,-0.263,-0.26,-0.257,-0.254,-0.251,-0.247,-0.243,-0.239,-0.234,-0.229,-0.224,-0.219,-0.214,-0.208,-0.202,-0.196,-0.19,-0.184,-0.177,-0.171,-0.164,-0.157,-0.15,-0.144,-0.137,-0.13,-0.123,-0.116,-0.109,-0.102,-0.095,-0.088,-0.081,-0.075,-0.068,-0.061,-0.055,-0.048,-0.042,-0.036,-0.03,-0.024,-0.019,-0.013,-0.008,-0.003,0.002,0.006,0.011,0.015,0.019,0.022,0.025,0.028,0.031,0.033,0.035,0.037,0.038,0.039,0.04,0.04,0.039,0.036,0.031,0.024,0.015,0.005,-0.007,-0.02,-0.034,-0.05,-0.067,-0.084,-0.103,-0.122,-0.142,-0.162,-0.18,-0.2,-0.22,-0.25,-0.27,-0.29,-0.31,-0.328,-0.348,-0.367,-0.386,-0.403,-0.42,-0.436,-0.45,-0.463,-0.475,-0.485,-0.494,-0.501,-0.506,-0.509,-0.51,-0.51,-0.509,-0.507,-0.505,-0.503,-0.5,-0.497,-0.493,-0.488,-0.483,-0.478,-0.473,-0.467,-0.46,-0.454,-0.447,-0.439,-0.432,-0.424,-0.416,-0.407,-0.398,-0.39,-0.38,-0.371,-0.362,-0.352,-0.342,-0.333,-0.323,-0.313,-0.303,-0.292,-0.282,-0.272,-0.261,-0.251,-0.241,-0.231,-0.22,-0.21,-0.2,-0.19,-0.18,-0.17,-0.161,-0.151,-0.142,-0.132,-0.123,-0.115,-0.106,-0.098,-0.09,-0.082,-0.074,-0.067,-0.06,-0.053,-0.047,-0.041,-0.035,-0.03,-0.025,-0.02,-0.016,-0.012,-0.009,-0.006,-0.004,-0.002,-0.001,0
PARAM_SLEEVE=0,0.002,0.008,0.019,0.032,0.049,0.068,0.09,0.12,0.14,0.17,0.2,0.23,0.26,0.29,0.33,0.36,0.39,0.42,0.45,0.48,0.51,0.53,0.56,0.58,0.601,0.618,0.633,0.644,0.653,0.658,0.66,0.66,0.66,0.659,0.659,0.658,0.658,0.657,0.656,0.655,0.654,0.653,0.652,0.65,0.649,0.647,0.645,0.643,0.642,0.639,0.637,0.635,0.633,0.63,0.628,0.625,0.623,0.62,0.617,0.614,0.611,0.608,0.605,0.602,0.598,0.595,0.591,0.588,0.584,0.58,0.577,0.573,0.569,0.565,0.561,0.557,0.553,0.549,0.544,0.54,0.535,0.531,0.527,0.522,0.517,0.513,0.508,0.503,0.499,0.494,0.489,0.484,0.479,0.474,0.469,0.464,0.459,0.454,0.449,0.443,0.438,0.433,0.428,0.422,0.417,0.412,0.406,0.401,0.396,0.39,0.385,0.379,0.374,0.368,0.363,0.358,0.352,0.346,0.341,0.335,0.33,0.325,0.319,0.314,0.308,0.302,0.297,0.292,0.286,0.281,0.275,0.27,0.264,0.259,0.254,0.248,0.243,0.238,0.232,0.227,0.222,0.217,0.211,0.206,0.201,0.196,0.191,0.186,0.181,0.176,0.171,0.166,0.161,0.157,0.152,0.147,0.143,0.138,0.133,0.129,0.125,0.12,0.116,0.111,0.107,0.103,0.099,0.095,0.091,0.087,0.083,0.08,0.076,0.072,0.069,0.065,0.062,0.058,0.055,0.052,0.049,0.046,0.043,0.04,0.037,0.035,0.032,0.03,0.027,0.025,0.023,0.021,0.018,0.017,0.015,0.013,0.011,0.01,0.008,0.007,0.006,0.005,0.004,0.003,0.002,0.002,0.001,0.001,0,0
PARAM_SKIRT=0,-0.002,-0.007,-0.015,-0.025,-0.039,-0.055,-0.074,-0.09,-0.12,-0.14,-0.17,-0.2,-0.23,-0.26,-0.29,-0.32,-0.36,-0.39,-0.43,-0.46,-0.5,-0.53,-0.57,-0.6,-0.63,-0.67,-0.7,-0.73,-0.76,-0.79,-0.82,-0.85,-0.87,-0.89,-0.91,-0.934,-0.951,-0.965,-0.977,-0.987,-0.994,-0.999,-1,-0.999,-0.995,-0.989,-0.981,-0.97,-0.957,-0.942,-0.926,-0.907,-0.886,-0.86,-0.84,-0.81,-0.79,-0.76,-0.73,-0.7,-0.66,-0.63,-0.59,-0.56,-0.52,-0.48,-0.44,-0.4,-0.36,-0.32,-0.28,-0.24,-0.19,-0.15,-0.11,-0.07,-0.02,0.02,0.07,0.11,0.15,0.19,0.24,0.28,0.32,0.36,0.4,0.44,0.48,0.52,0.56,0.59,0.63,0.66,0.7,0.73,0.76,0.79,0.81,0.84,0.86,0.89,0.907,0.926,0.942,0.957,0.97,0.981,0.989,0.995,0.999,1,1,1,0.999,0.997,0.993,0.987,0.978,0.967,0.951,0.932,0.91,0.88,0.85,0.81,0.77,0.72,0.66,0.6,0.53,0.47,0.41,0.34,0.28,0.22,0.16,0.1,0.04,-0.02,-0.08,-0.14,-0.19,-0.25,-0.3,-0.35,-0.41,-0.46,-0.5,-0.55,-0.59,-0.64,-0.68,-0.72,-0.75,-0.79,-0.82,-0.85,-0.88,-0.9,-0.92,-0.944,-0.96,-0.975,-0.985,-0.994,-0.998,-1,-0.998,-0.993,-0.985,-0.975,-0.961,-0.945,-0.926,-0.91,-0.88,-0.86,-0.83,-0.8,-0.77,-0.74,-0.71,-0.68,-0.64,-0.61,-0.57,-0.54,-0.5,-0.47,-0.43,-0.4,-0.37,-0.33,-0.3,-0.27,-0.24,-0.21,-0.18,-0.15,-0.13,-0.11,-0.09,-0.066,-0.049,-0.035,-0.023,-0.013,-0.006,-0.001
PARAM_FOOT_RIBBON=0,-0.002,-0.007,-0.014,-0.025,-0.038,-0.054,-0.072,-0.09,-0.12,-0.14,-0.17,-0.19,-0.22,-0.25,-0.28,-0.32,-0.35,-0.38,-0.42,-0.45,-0.49,-0.52,-0.55,-0.59,-0.62,-0.65,-0.69,-0.72,-0.75,-0.78,-0.8,-0.83,-0.85,-0.88,-0.9,-0.915,-0.932,-0.946,-0.958,-0.967,-0.974,-0.979,-0.98,-0.979,-0.976,-0.971,-0.963,-0.954,-0.943,-0.931,-0.916,-0.9,-0.883,-0.863,-0.84,-0.82,-0.8,-0.77,-0.75,-0.72,-0.69,-0.66,-0.63,-0.6,-0.57,-0.54,-0.5,-0.47,-0.43,-0.4,-0.36,-0.33,-0.29,-0.25,-0.22,-0.18,-0.14,-0.11,-0.07,-0.03,0,0.04,0.08,0.11,0.15,0.18,0.22,0.25,0.29,0.32,0.35,0.38,0.41,0.44,0.47,0.5,0.52,0.55,0.57,0.59,0.61,0.633,0.65,0.666,0.681,0.693,0.704,0.713,0.721,0.726,0.729,0.73,0.725,0.712,0.69,0.66,0.63,0.58,0.53,0.48,0.42,0.36,0.29,0.22,0.15,0.08,0,-0.08,-0.15,-0.23,-0.31,-0.38,-0.45,-0.52,-0.59,-0.65,-0.71,-0.76,-0.81,-0.86,-0.89,-0.92,-0.94,-0.955,-0.96,-0.959,-0.957,-0.954,-0.95,-0.944,-0.938,-0.93,-0.921,-0.911,-0.901,-0.889,-0.876,-0.863,-0.849,-0.834,-0.818,-0.802,-0.785,-0.767,-0.749,-0.73,-0.711,-0.691,-0.671,-0.65,-0.63,-0.61,-0.59,-0.57,-0.55,-0.52,-0.5,-0.48,-0.46,-0.44,-0.41,-0.39,-0.37,-0.35,-0.33,-0.309,-0.29,-0.269,-0.249,-0.23,-0.211,-0.193,-0.175,-0.158,-0.142,-0.126,-0.111,-0.097,-0.084,-0.071,-0.059,-0.049,-0.039,-0.03,-0.022,-0.016,-0.01,-0.006,-0.003,-0.001

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 MiB

View File

@@ -0,0 +1,212 @@
1310.png
size:316,2012
filter:Linear,Linear
scale:0.2
E眉毛
bounds:7,1948,125,15
offsets:23,23,171,62
E眼珠
bounds:255,415,106,43
offsets:23,23,152,89
rotate:90
E眼白
bounds:177,1198,127,46
offsets:24,23,175,93
E眼皮
bounds:32,2004,78,7
offsets:24,23,126,54
E眼角
bounds:1,1963,132,22
offsets:22,23,176,67
E睫毛
bounds:1,1984,149,27
offsets:22,22,193,71
E脸1
bounds:1,1030,170,144
offsets:23,23,216,193
E脸2
bounds:1,1322,170,147
offsets:23,23,216,193
L大臂
bounds:237,2,27,34
offsets:23,23,73,80
L大臂衣袖
bounds:252,1376,55,85
offsets:23,12,101,120
L大臂衣袖后
bounds:190,1965,47,46
offsets:23,22,93,90
L正常左小臂
bounds:253,332,59,77
offsets:22,22,103,121
L正常左手
bounds:107,1,39,30
offsets:23,23,85,76
L正常左袖口
bounds:5,1,42,31
offsets:23,22,87,76
M嘴巴
bounds:7,1987,20,4
offsets:25,33,71,63
M笑口
bounds:1,1919,23,15
offsets:24,24,71,63
M说话
bounds:24,1920,23,15
offsets:24,24,71,63
R大臂
bounds:281,210,30,41
offsets:23,23,75,87
R大臂衣袖
bounds:270,1461,40,75
offsets:23,15,86,113
rotate:180
R大臂衣袖后
bounds:131,1929,38,37
offsets:23,23,84,82
R正常右小臂
bounds:200,3,37,33
offsets:23,23,83,78
R正常右手
bounds:158,1992,28,19
offsets:23,23,74,65
X眼
bounds:179,23,116,41
offsets:23,20,162,81
rotate:180
发1
bounds:143,855,126,217
offsets:21,21,167,259
发10
bounds:221,57,92,151
offsets:17,22,131,194
发11内阴影
bounds:264,657,122,50
offsets:22,20,166,92
rotate:90
发2
bounds:1,33,72,124
offsets:22,22,115,168
rotate:270
发3
bounds:135,1779,124,212
offsets:21,22,145,255
rotate:180
发4
bounds:196,928,112,221
offsets:20,21,153,262
发5
bounds:252,1599,37,114
offsets:23,22,82,158
发6
bounds:281,1634,29,79
offsets:22,21,73,122
发7
bounds:195,1609,64,156
offsets:22,23,109,201
发8
bounds:208,1466,84,155
offsets:21,21,126,184
发9
bounds:173,1352,103,156
offsets:21,21,144,198
发带
bounds:228,1763,170,76
offsets:21,20,218,117
rotate:270
发影子
bounds:1,231,172,147
offsets:20,21,216,190
发饰1
bounds:173,1760,51,74
offsets:22,22,95,118
发饰2
bounds:48,1,59,45
offsets:23,23,105,90
rotate:180
发饰3
bounds:1,1932,18,101
offsets:23,23,64,147
rotate:270
可爱花朵
bounds:124,206,406,159
offsets:20,17,443,194
rotate:90
右大腿
bounds:277,1315,60,38
offsets:23,23,106,84
rotate:270
右小腿
bounds:266,555,46,101
offsets:22,22,90,145
后发1
bounds:159,1148,174,141
offsets:20,19,214,180
rotate:90
后发2
bounds:1,612,287,186
offsets:20,20,328,225
rotate:90
后发3
bounds:153,287,280,162
offsets:19,18,318,198
rotate:90
后发4
bounds:1,1699,237,206
offsets:19,18,277,242
rotate:90
后摆
bounds:8,56,213,167
offsets:20,20,253,206
rotate:180
后脑勺
bounds:1,1469,232,206
offsets:21,22,275,250
rotate:90
左大腿
bounds:239,812,72,38
offsets:23,22,117,83
左小腿
bounds:245,863,69,92
offsets:22,22,113,136
星星1
bounds:1,123,108,113
rotate:90
星星2
bounds:1,1176,144,156
rotate:90
星星3
bounds:1,901,128,137
rotate:90
星星4
bounds:39,679,126,133
rotate:90
生气符号1
bounds:1,495,121,119
生气符号2
bounds:187,613,77,73
胸饰
bounds:241,1936,73,75
脸红
bounds:197,362,141,58
offsets:23,24,187,103
rotate:90
裙边
bounds:1,1668,42,40
offsets:23,23,88,86
身体
bounds:163,690,133,148
offsets:20,22,174,190
问号
bounds:1,380,113,124
rotate:90
领子
bounds:91,33,88,43
offsets:22,23,132,87
领结
bounds:260,1703,55,57
offsets:21,22,99,92
rotate:180
鼻子
bounds:1,2000,3,4
offsets:23,23,50,51

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More