publish: the public projection begins here
This is a projection, not a development branch. The tree above was constructed from the internal source named below under a manifest that decides which paths may leave, then scanned as a whole tree rather than as a series of patches, and only then published. Public history starts here because the history before it was not admissible, and neither was the tree. What used to stand in this repository included a rescue copy of another machine, a directory of phone handoffs, deployment wired to one house, and a submodule pointing at a forge no stranger can reach. None of that was ever the product. It stays in the private forge, which is allowed to hold the whole working organism, and this is what was deliberately sent out instead. Three mechanisms produced this tree, in decreasing order of trust. A top-level path the manifest does not name never arrives at all, which is the one that catches directories nobody has thought of yet. Named internal files inside admitted roots are dropped. A short, reviewed table replaces deployment defaults that a public build must not carry -- an endpoint aimed at one LAN, a VPN profile belonging to one phone, packaging built from one checkout path. Everything after this commit is an ordinary publication with the same three trailers, so a force push stops being routine and starts meaning that something deliberate happened. The trailers bind the projection to its source without pretending the public SHA is the private one: same lineage, different tree, and the record says so. Source-Sha: 8f27b1e76a8fef560a336aba18e6990713ff1047 Policy-Sha: 6b261d2f3e6e1fb19874846ba4bb1dfe15565d25b8618c1c1afba0419c101d27 Tree-Digest: 18ec3563c5e5ef9a414993a9f6734b251ff9ed3cd56eebdd6cac01e45c6e3067
14
.cargo/aarch64-pkg-config
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
# ponytail: cross pkg-config wrapper for aarch64-unknown-linux-gnu.
|
||||
# cargo's [env] block doesn't reliably reach build-script pkg-config probes,
|
||||
# so alsa-sys's built-in cross guard trips. This wrapper sets the vars itself
|
||||
# and is referenced via PKG_CONFIG in .cargo/config.toml — every pkg-config
|
||||
# probe in the tree (alsa-sys today, any future -sys crate) goes through it.
|
||||
SYSROOT="${SOUVERAINE_AARCH64_SYSROOT:-/usr/aarch64-linux-gnu}"
|
||||
export PKG_CONFIG_ALLOW_CROSS=1
|
||||
# Both dirs: udev.pc (and other systemd-shipped .pc files) live in
|
||||
# share/pkgconfig, not lib/pkgconfig. This wrapper OVERRIDES whatever the
|
||||
# caller exported, so widening it here is the only fix that takes effect.
|
||||
export PKG_CONFIG_LIBDIR="$SYSROOT/usr/lib/pkgconfig:$SYSROOT/usr/share/pkgconfig"
|
||||
export PKG_CONFIG_SYSROOT_DIR="$SYSROOT"
|
||||
exec /usr/bin/pkg-config "$@"
|
||||
10
.cargo/config.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# ponytail: cross-build target for the Pixel 3 / any aarch64 Arch box.
|
||||
# Sysroot (/usr/aarch64-linux-gnu, from the aarch64-linux-gnu-gcc/glibc Arch
|
||||
# packages) holds glibc 2.43 + the cross alsa-lib we built in. Linker is the
|
||||
# cross gcc.
|
||||
#
|
||||
# The PKG_CONFIG_* vars alsa-sys needs are NOT set here — cargo's [env] block
|
||||
# doesn't reliably reach build-script pkg-config probes. scripts/build-cross.sh
|
||||
# exports them on the cargo invocation so they inherit to every build script.
|
||||
[target.aarch64-unknown-linux-gnu]
|
||||
linker = "aarch64-linux-gnu-gcc"
|
||||
2
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Preserve vendored upstream bytes; style checks apply to our overlays.
|
||||
surfaces/quickshell/ii-base/** -whitespace
|
||||
199
.gitea/workflows/publish.yml
Normal file
|
|
@ -0,0 +1,199 @@
|
|||
name: publish
|
||||
|
||||
# The public branch is an output. Nothing here builds or tests the product --
|
||||
# `ci.yml` on `primary` did that against the source this projection was
|
||||
# constructed from. This workflow only carries an already-constructed,
|
||||
# already-gated candidate to the forge that is allowed to serve it, and proves
|
||||
# the forge serves exactly that.
|
||||
#
|
||||
# It lives on the public branch because that is where the push lands, and it is
|
||||
# deliberately the only workflow that does: `ci.yml` stays internal because it
|
||||
# names internal build hosts.
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [public]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
# The gate travels with the tree it judges. A candidate that reaches this
|
||||
# branch has already passed on the source side; running it again here means
|
||||
# the thing actually being published is the thing that was actually checked,
|
||||
# rather than something that resembled it an hour ago.
|
||||
public-surface:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Gate the published tree
|
||||
run: |
|
||||
set -euo pipefail
|
||||
if [ ! -f .publication/surface_gate.py ]; then
|
||||
echo "::error::the public tree carries no gate; refusing to publish it"
|
||||
exit 1
|
||||
fi
|
||||
# The manifest is private -- its redaction table quotes what it
|
||||
# removes -- so the published tree is checked against the rules the
|
||||
# gate carries, with no exception list available to excuse anything.
|
||||
python3 - <<'PY' > /tmp/bare-manifest.json
|
||||
import json
|
||||
json.dump({
|
||||
"schema_version": 1,
|
||||
"repository": "Fimeg/souveraine",
|
||||
"public_roots": [], "public_root_files": [],
|
||||
"review_required": [], "forbidden": [], "forbidden_classes": [],
|
||||
"exceptions": [{"path": ".publication/*", "rule": r,
|
||||
"reason": "the gate names the patterns it refuses",
|
||||
"reviewed": "2026-09-04"}
|
||||
for r in ("internal-host", "internal-email", "rfc1918",
|
||||
"home-path", "bearer-token", "ai-attribution")],
|
||||
}, open("/dev/stdout", "w"))
|
||||
PY
|
||||
python3 .publication/surface_gate.py \
|
||||
--repo . --sha "$GITHUB_SHA" \
|
||||
--manifest /tmp/bare-manifest.json \
|
||||
--out /tmp/published-surface.md || true
|
||||
cat /tmp/published-surface.md
|
||||
# Tree shape is empty in the bare manifest, so only content, history
|
||||
# and file-class findings can deny here. Those are the ones that must
|
||||
# never reach a public forge.
|
||||
if grep -E '^\| deny \|' /tmp/published-surface.md | grep -vq 'unclassified-root'; then
|
||||
echo "::error::published tree carries content or history findings"
|
||||
exit 1
|
||||
fi
|
||||
echo "published tree carries no content or history findings"
|
||||
|
||||
publish-forge:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [public-surface]
|
||||
env:
|
||||
PUBLIC_FORGE_TOKEN: ${{ secrets.PUBLIC_FORGE_TOKEN }}
|
||||
steps:
|
||||
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Publish and verify exact SHA
|
||||
run: |
|
||||
set -euo pipefail
|
||||
: "${PUBLIC_FORGE_TOKEN:?PUBLIC_FORGE_TOKEN is required}"
|
||||
expected="${GITHUB_SHA}"
|
||||
forge_url='https://forge.caseytunturi.com/Fimeg/souveraine.git'
|
||||
|
||||
# Ordinary publication is fast-forward only. .publication/EPOCH may
|
||||
# authorise exactly one replacement, and only of the SHA it names, so
|
||||
# the authorisation is spent the moment it is used.
|
||||
lease=""
|
||||
remote_sha="$(git ls-remote "$forge_url" refs/heads/public | awk '{print $1}')"
|
||||
if [ -n "$remote_sha" ]; then
|
||||
if git cat-file -e "${remote_sha}^{commit}" 2>/dev/null &&
|
||||
git merge-base --is-ancestor "$remote_sha" "$expected"; then
|
||||
:
|
||||
else
|
||||
authorised="$(awk '$1 == "replaces" { print $2 }' .publication/EPOCH 2>/dev/null || true)"
|
||||
if [ -n "$authorised" ] && [ "$authorised" = "$remote_sha" ]; then
|
||||
echo "[publish] epoch authorised to replace $remote_sha"
|
||||
lease="$remote_sha"
|
||||
else
|
||||
echo "[publish] refusing non-fast-forward public history" >&2
|
||||
echo "[publish] remote is $remote_sha; EPOCH authorises ${authorised:-nothing}" >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
auth="$(printf 'publisher-souveraine:%s' "$PUBLIC_FORGE_TOKEN" | base64 -w0)"
|
||||
if [ -n "$lease" ]; then
|
||||
git -c "http.https://forge.caseytunturi.com/.extraheader=Authorization: Basic $auth" \
|
||||
push --force-with-lease="refs/heads/public:$lease" "$forge_url" HEAD:public
|
||||
else
|
||||
git -c "http.https://forge.caseytunturi.com/.extraheader=Authorization: Basic $auth" \
|
||||
push "$forge_url" HEAD:public
|
||||
fi
|
||||
|
||||
forge_sha="$(git ls-remote "$forge_url" refs/heads/public | awk '{print $1}')"
|
||||
test "$forge_sha" = "$expected"
|
||||
git fetch --force --no-tags "$forge_url" \
|
||||
refs/heads/public:refs/remotes/public-forge/public
|
||||
test "$(git rev-parse refs/remotes/public-forge/public)" = "$forge_sha"
|
||||
echo "[publish] Forgejo anonymously serves exact published SHA: $forge_sha"
|
||||
|
||||
# Downstreams reproduce the anonymously fetched Forgejo ref. A missing
|
||||
# credential or a divergent history is a visible degraded mirror, never a
|
||||
# failure of the canonical publication.
|
||||
mirror-downstreams:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [publish-forge]
|
||||
env:
|
||||
CODEBERG_TOKEN: ${{ secrets.CODEBERG_TOKEN }}
|
||||
MIRROR_GITHUB_TOKEN: ${{ secrets.MIRROR_GITHUB_TOKEN }}
|
||||
steps:
|
||||
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Mirror downstreams from Forgejo
|
||||
run: |
|
||||
set -euo pipefail
|
||||
expected="${GITHUB_SHA}"
|
||||
forge_url='https://forge.caseytunturi.com/Fimeg/souveraine.git'
|
||||
forge_sha="$(git ls-remote "$forge_url" refs/heads/public | awk '{print $1}')"
|
||||
test "$forge_sha" = "$expected"
|
||||
git fetch --force --no-tags "$forge_url" \
|
||||
refs/heads/public:refs/remotes/public-forge/public
|
||||
test "$(git rev-parse refs/remotes/public-forge/public)" = "$forge_sha"
|
||||
|
||||
mirror_downstream() {
|
||||
label="$1"; url="$2"; host="$3"; user="$4"; token="$5"
|
||||
|
||||
if [ -z "$token" ]; then
|
||||
echo "::warning::[mirror] $label credential absent; Forgejo is published, $label is degraded"
|
||||
return 0
|
||||
fi
|
||||
if ! remote_sha="$(git ls-remote "$url" refs/heads/public | awk '{print $1}')"; then
|
||||
echo "::warning::[mirror] cannot read $label public ref; Forgejo remains authoritative"
|
||||
return 0
|
||||
fi
|
||||
|
||||
lease=""
|
||||
if [ -n "$remote_sha" ]; then
|
||||
if ! git fetch --force --no-tags "$url" \
|
||||
"refs/heads/public:refs/remotes/mirror-check/$label"; then
|
||||
echo "::warning::[mirror] cannot fetch $label public ref; leaving it unchanged"
|
||||
return 0
|
||||
fi
|
||||
if ! git merge-base --is-ancestor "$remote_sha" "$forge_sha"; then
|
||||
authorised="$(awk '$1 == "replaces" { print $2 }' .publication/EPOCH 2>/dev/null || true)"
|
||||
if [ -n "$authorised" ] && [ "$authorised" = "$remote_sha" ]; then
|
||||
echo "[mirror] $label follows the authorised epoch from $remote_sha"
|
||||
lease="$remote_sha"
|
||||
else
|
||||
echo "::warning::[mirror] refusing non-fast-forward $label history; explicit alignment required"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
auth="$(printf '%s:%s' "$user" "$token" | base64 -w0)"
|
||||
if [ -n "$lease" ]; then
|
||||
if ! git -c "http.https://$host/.extraheader=Authorization: Basic $auth" \
|
||||
push --force-with-lease="refs/heads/public:$lease" \
|
||||
"$url" refs/remotes/public-forge/public:public; then
|
||||
echo "::warning::[mirror] $label epoch push failed; Forgejo remains authoritative"
|
||||
return 0
|
||||
fi
|
||||
elif ! git -c "http.https://$host/.extraheader=Authorization: Basic $auth" \
|
||||
push "$url" refs/remotes/public-forge/public:public; then
|
||||
echo "::warning::[mirror] $label push failed; Forgejo remains authoritative"
|
||||
return 0
|
||||
fi
|
||||
|
||||
mirrored_sha="$(git ls-remote "$url" refs/heads/public | awk '{print $1}')"
|
||||
if [ "$mirrored_sha" != "$forge_sha" ]; then
|
||||
echo "::warning::[mirror] $label SHA mismatch after push; Forgejo remains authoritative"
|
||||
return 0
|
||||
fi
|
||||
echo "[mirror] $label agrees with Forgejo: $forge_sha"
|
||||
}
|
||||
|
||||
mirror_downstream codeberg 'https://codeberg.org/Fimeg/souveraine.git' codeberg.org Fimeg "$CODEBERG_TOKEN"
|
||||
mirror_downstream github 'https://github.com/Fimeg/souveraine.git' github.com Fimeg "$MIRROR_GITHUB_TOKEN"
|
||||
76
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# Rust
|
||||
/target/
|
||||
**/*.rs.bk
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Debug
|
||||
gdb.txt
|
||||
*.log
|
||||
|
||||
# Environment
|
||||
.env
|
||||
.env.local
|
||||
|
||||
# Build artifacts
|
||||
*.o
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.rlib
|
||||
*.rmeta
|
||||
|
||||
# Test
|
||||
*.profraw
|
||||
lcov.info
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Local development
|
||||
local.toml
|
||||
config.local.toml
|
||||
|
||||
# Voice-input test recordings — transient, stay local
|
||||
voice-recording-*.mp3
|
||||
|
||||
# Memory repos (should be external)
|
||||
.memer/
|
||||
**/.memer/
|
||||
|
||||
# Web assets (if present)
|
||||
web/dist/
|
||||
souveraine.log
|
||||
souveraine.log.prev
|
||||
|
||||
# Filed-away stray working files — kept on disk, out of the repo
|
||||
/docs/archive/strays/
|
||||
|
||||
# Config (use souveraine.example.toml as template)
|
||||
souveraine.toml
|
||||
|
||||
# Working notes — kept on disk, never committed to any remote
|
||||
CLAUDE.md
|
||||
docs/
|
||||
continuation_prompt.md
|
||||
AD_continuation_prompt.md
|
||||
COMMIT_MESSAGES.txt
|
||||
vanguard-souveraine-notes.md
|
||||
|
||||
# Local-only project scaffolding — kept on disk, never committed to any remote.
|
||||
# Anchored to repo root (leading /) so shipped surface scripts — e.g.
|
||||
# surfaces/quickshell/scripts/ — are still tracked.
|
||||
/.superpowers/
|
||||
/journal/
|
||||
/scripts/
|
||||
/website/
|
||||
13
.publication/EPOCH
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Break glass.
|
||||
#
|
||||
# Ordinary publication is fast-forward only. This file authorises the
|
||||
# publication job to replace the public branch exactly once, and only when the
|
||||
# public ref it finds is the one named below. After the epoch lands, the named
|
||||
# SHA is no longer what any remote holds, so this authorisation is spent and
|
||||
# force push goes dark again without anyone remembering to close it.
|
||||
#
|
||||
# Development history is never rewritten. It is preserved internally at
|
||||
# archive/public-pre-epoch-2026-09-04.
|
||||
|
||||
replaces b68bcebf6c390ec6e2a361aff3f17ea0736c7da2
|
||||
reason sanitized projection epoch; public history begins at the cut
|
||||
478
.publication/surface_gate.py
Normal file
|
|
@ -0,0 +1,478 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Editorial authority over a public tree.
|
||||
|
||||
The existing `.publication` mechanism answers a transport question: was this
|
||||
SHA produced by the right gates, on the right repository, under a policy that
|
||||
authorizes projection to this destination. It is a good answer to that
|
||||
question and this file does not replace it.
|
||||
|
||||
This file answers the question nobody was asking:
|
||||
|
||||
Does this tree belong outside at all?
|
||||
|
||||
Six gates, in the order a reviewer would actually apply them:
|
||||
|
||||
1. tree-shape every top-level entry is classified by the manifest
|
||||
2. new-surface what the public diff P1 -> P2 newly admits
|
||||
3. file-class forbidden classes anywhere in the tree
|
||||
4. content the whole candidate tree, not the changed lines
|
||||
5. history subjects, bodies, and author identities
|
||||
6. presentation what a stranger sees in the root listing
|
||||
|
||||
Gate 4 is the one that matters most and is the one an incremental scanner
|
||||
structurally cannot provide. A patch scanner sees a file the day it lands. It
|
||||
never sees it again. A tree that was clean when every one of its commits was
|
||||
scanned can still be a tree that should not be public, because publication is
|
||||
a property of the tree, not of the diffs that built it.
|
||||
|
||||
The severity model is deliberately harsher than the incremental scanner's.
|
||||
There, a home path or a LAN address is a WARN: one line in one patch, and a
|
||||
human is reading the patch anyway. Here the same finding is a DENY, because
|
||||
nobody reads a whole tree, and because the finding means the path is standing
|
||||
in the public product right now, not that it passed through once.
|
||||
|
||||
Absence of known-secret content is not authorization to publish.
|
||||
|
||||
Exceptions are narrow and auditable: path, rule, reason, review date. A rule
|
||||
turned off globally is not an exception, it is a retreat, so this file has no
|
||||
syntax for one.
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import fnmatch
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
from datetime import date
|
||||
|
||||
SCHEMA_VERSION = 1
|
||||
|
||||
DENY = "deny"
|
||||
REVIEW = "review"
|
||||
NOTE = "note"
|
||||
|
||||
SEVERITY_ORDER = {DENY: 0, REVIEW: 1, NOTE: 2}
|
||||
|
||||
# Anything a forge will not render as source. Reviewed by eye, not by rule.
|
||||
BINARY_HINT = re.compile(
|
||||
r"\.(png|jpe?g|gif|webp|ico|pdf|zip|gz|xz|zst|bz2|tar|so|a|o|dll|dylib"
|
||||
r"|exe|bin|wav|mp3|mp4|ogg|woff2?|ttf|otf|jar|whl|deb|rpm|img|iso)$",
|
||||
re.IGNORECASE,
|
||||
)
|
||||
|
||||
# Host suffixes a stranger can actually resolve. A submodule pointed anywhere
|
||||
# else is both a leak and a repository that does not clone.
|
||||
PUBLIC_FORGE_HOSTS = (
|
||||
"forge.caseytunturi.com",
|
||||
"codeberg.org",
|
||||
"github.com",
|
||||
"gitlab.com",
|
||||
"git.sr.ht",
|
||||
)
|
||||
|
||||
|
||||
class Rule:
|
||||
__slots__ = ("rule_id", "description", "pattern", "severity")
|
||||
|
||||
def __init__(self, rule_id, description, pattern, severity):
|
||||
self.rule_id = rule_id
|
||||
self.description = description
|
||||
self.pattern = re.compile(pattern, re.IGNORECASE)
|
||||
self.severity = severity
|
||||
|
||||
|
||||
# Capabilities deny because publishing one hands control to whoever reads it
|
||||
# and no later cleanup takes it back. Topology denies here — see the module
|
||||
# docstring — because in a tree it is a standing disclosure, not a transit.
|
||||
CONTENT_RULES = (
|
||||
Rule("private-key", "private key material",
|
||||
r"-----BEGIN (?:RSA|DSA|EC|OPENSSH|PGP) PRIVATE KEY", DENY),
|
||||
# The value must be quoted. An unquoted run of letters after `authorization:`
|
||||
# is a type name in every language that has types, and matching it made the
|
||||
# gate cry wolf over `authorization: MutationAuthorization` on first run.
|
||||
Rule("bearer-token", "embedded token or bearer credential",
|
||||
r"(?:ghp|gho|ghs|ghu|github_pat)_[A-Za-z0-9_]{20,}"
|
||||
r"|(?:authorization|private[-_]?token|api[-_]?key|client[-_]?secret)"
|
||||
r"\s*[:=]\s*['\"][A-Za-z0-9._~+/=-]{16,}['\"]", DENY),
|
||||
Rule("rfc1918", "private LAN address",
|
||||
r"\b(?:10\.\d{1,3}\.\d{1,3}\.\d{1,3}"
|
||||
r"|192\.168\.\d{1,3}\.\d{1,3}"
|
||||
r"|172\.(?:1[6-9]|2\d|3[01])\.\d{1,3}\.\d{1,3})\b", DENY),
|
||||
# Case-sensitive on purpose. Every rule here is otherwise IGNORECASE, and
|
||||
# a case-blind `/Users/` matched the phrase "sessions/users/seats" in a
|
||||
# comment about loginctl. A macOS home is capitalised; a POSIX path segment
|
||||
# spelled `users` is not a home directory.
|
||||
Rule("home-path", "developer home directory",
|
||||
r"/home/[a-z][a-z0-9_-]*|(?-i:/Users/[A-Za-z])|(?-i:C:\\\\Users\\\\)", DENY),
|
||||
Rule("internal-host", "internal hostname or forge",
|
||||
r"\bwiuf|\barchdev\b|\bwiufph\b", DENY),
|
||||
# The internal domain only. An author's own public contact address is not a
|
||||
# leak — it is on the security page on purpose, and matching it made the
|
||||
# gate refuse commits for being signed by the person who wrote them.
|
||||
Rule("internal-email", "internal service identity or internal domain",
|
||||
r"@wiuf\.net", DENY),
|
||||
Rule("ai-attribution", "model attribution",
|
||||
r"co-authored-by:\s*(?:claude|gpt|copilot|codex)"
|
||||
r"|generated with \[?claude", REVIEW),
|
||||
)
|
||||
|
||||
MESSAGE_RULES = CONTENT_RULES
|
||||
|
||||
|
||||
def run(repo, args, ok=(0,)):
|
||||
p = subprocess.run(["git", "-C", repo] + args,
|
||||
capture_output=True, text=True, errors="replace")
|
||||
if p.returncode not in ok:
|
||||
raise RuntimeError(f"git {' '.join(args)}: {p.stderr.strip()}")
|
||||
return p.stdout
|
||||
|
||||
|
||||
class Finding:
|
||||
__slots__ = ("gate", "severity", "rule", "path", "detail", "excerpt")
|
||||
|
||||
def __init__(self, gate, severity, rule, path, detail, excerpt=""):
|
||||
self.gate = gate
|
||||
self.severity = severity
|
||||
self.rule = rule
|
||||
self.path = path
|
||||
self.detail = detail
|
||||
self.excerpt = excerpt
|
||||
|
||||
|
||||
def redact(text, match):
|
||||
"""Keep the shape, drop the value. A report is itself a publishable object."""
|
||||
s, e = match.span()
|
||||
line = text[max(0, s - 40):e + 40].replace("\n", " ").strip()
|
||||
hit = match.group(0)
|
||||
keep = 2 if len(hit) > 6 else 1
|
||||
masked = hit[:keep] + "*" * max(1, len(hit) - keep * 2) + (hit[-keep:] if len(hit) > 6 else "")
|
||||
return line.replace(hit, masked)[:150]
|
||||
|
||||
|
||||
class Manifest:
|
||||
"""The authority for what may cross. Changing it is the consequential act."""
|
||||
|
||||
def __init__(self, raw, path):
|
||||
self.path = path
|
||||
self.schema_version = raw.get("schema_version")
|
||||
if self.schema_version != SCHEMA_VERSION:
|
||||
raise ValueError(f"{path}: schema_version must be {SCHEMA_VERSION}")
|
||||
self.repository = raw.get("repository", "?")
|
||||
self.public_roots = list(raw.get("public_roots", []))
|
||||
self.public_root_files = list(raw.get("public_root_files", []))
|
||||
self.review_required = list(raw.get("review_required", []))
|
||||
self.forbidden = list(raw.get("forbidden", []))
|
||||
self.forbidden_classes = list(raw.get("forbidden_classes", []))
|
||||
self.max_blob_bytes = int(raw.get("max_blob_bytes", 2 * 1024 * 1024))
|
||||
self.exceptions = list(raw.get("exceptions", []))
|
||||
|
||||
def classify_root(self, name):
|
||||
if name in self.forbidden:
|
||||
return "forbidden"
|
||||
if name in self.public_roots or name in self.public_root_files:
|
||||
return "allowed"
|
||||
if name in self.review_required:
|
||||
return "review"
|
||||
return "unclassified"
|
||||
|
||||
def excepted(self, path, rule_id):
|
||||
"""An exception names one path and one rule, and says why, and when."""
|
||||
for exc in self.exceptions:
|
||||
if exc.get("rule") != rule_id:
|
||||
continue
|
||||
if not fnmatch.fnmatch(path, exc.get("path", "")):
|
||||
continue
|
||||
if not exc.get("reason") or not exc.get("reviewed"):
|
||||
continue
|
||||
return exc
|
||||
return None
|
||||
|
||||
|
||||
def tree_entries(repo, sha):
|
||||
"""(mode, type, oid, path) for every entry, recursively."""
|
||||
out = run(repo, ["ls-tree", "-r", "-l", sha])
|
||||
entries = []
|
||||
for line in out.splitlines():
|
||||
if not line.strip():
|
||||
continue
|
||||
meta, path = line.split("\t", 1)
|
||||
parts = meta.split()
|
||||
mode, otype, oid = parts[0], parts[1], parts[2]
|
||||
size = parts[3] if len(parts) > 3 else "-"
|
||||
entries.append((mode, otype, oid, size, path))
|
||||
return entries
|
||||
|
||||
|
||||
def top_level(repo, sha):
|
||||
return [l for l in run(repo, ["ls-tree", "--name-only", sha]).splitlines() if l.strip()]
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 1
|
||||
|
||||
def gate_tree_shape(repo, sha, manifest, findings):
|
||||
for name in top_level(repo, sha):
|
||||
verdict = manifest.classify_root(name)
|
||||
if verdict == "forbidden":
|
||||
findings.append(Finding(
|
||||
"tree-shape", DENY, "forbidden-root", name,
|
||||
"top-level path is forbidden by the public-surface manifest"))
|
||||
elif verdict == "unclassified":
|
||||
findings.append(Finding(
|
||||
"tree-shape", DENY, "unclassified-root", name,
|
||||
"no manifest entry admits this top-level path to the public product"))
|
||||
elif verdict == "review":
|
||||
findings.append(Finding(
|
||||
"tree-shape", REVIEW, "review-root", name,
|
||||
"manifest marks this root review-required"))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 2
|
||||
|
||||
def gate_new_surface(repo, sha, previous, manifest, findings):
|
||||
if not previous:
|
||||
findings.append(Finding(
|
||||
"new-surface", NOTE, "no-baseline", "-",
|
||||
"no previous public SHA given; the diff gate did not run"))
|
||||
return
|
||||
|
||||
out = run(repo, ["diff", "--name-status", "--diff-filter=ACR", previous, sha])
|
||||
added = []
|
||||
for line in out.splitlines():
|
||||
parts = line.split("\t")
|
||||
if len(parts) >= 2:
|
||||
added.append(parts[-1])
|
||||
|
||||
old_roots = set(top_level(repo, previous))
|
||||
# One finding per newly admitted root, not one per file underneath it: the
|
||||
# decision being reviewed is the root, and a hundred rows for one directory
|
||||
# buries the other gates' output.
|
||||
reported = set()
|
||||
for path in added:
|
||||
root = path.split("/", 1)[0]
|
||||
if root not in old_roots and root not in reported:
|
||||
reported.add(root)
|
||||
sev = REVIEW if manifest.classify_root(root) == "allowed" else DENY
|
||||
findings.append(Finding(
|
||||
"new-surface", sev, "new-top-level", root,
|
||||
"publication newly admits a top-level path; "
|
||||
"this is a public-surface change, not a code change"))
|
||||
if os.path.basename(path).startswith("."):
|
||||
findings.append(Finding(
|
||||
"new-surface", REVIEW, "new-dotfile", path,
|
||||
"new dotfile or dotdirectory entering the public tree"))
|
||||
|
||||
# Symlinks and submodules are surface changes disguised as files.
|
||||
for mode, otype, _oid, _size, path in tree_entries(repo, sha):
|
||||
if mode == "120000":
|
||||
target = run(repo, ["show", f"{sha}:{path}"]).strip()
|
||||
escapes = target.startswith("/") or ".." in target.split("/")
|
||||
findings.append(Finding(
|
||||
"new-surface", DENY if escapes else NOTE, "symlink", path,
|
||||
"symlink target leaves the public tree" if escapes
|
||||
else "symlink stays inside the public tree"))
|
||||
if otype == "commit":
|
||||
findings.append(Finding(
|
||||
"new-surface", REVIEW, "submodule", path,
|
||||
"submodule gitlink; its URL must resolve publicly"))
|
||||
|
||||
|
||||
def gate_submodule_urls(repo, sha, findings):
|
||||
try:
|
||||
text = run(repo, ["show", f"{sha}:.gitmodules"])
|
||||
except RuntimeError:
|
||||
return
|
||||
name = None
|
||||
for line in text.splitlines():
|
||||
line = line.strip()
|
||||
if line.startswith("[submodule"):
|
||||
name = line
|
||||
if line.startswith("url"):
|
||||
url = line.split("=", 1)[1].strip()
|
||||
host = re.sub(r"^[a-z+]+://", "", url).split("/")[0].split("@")[-1].split(":")[0]
|
||||
if not any(host == h or host.endswith("." + h) for h in PUBLIC_FORGE_HOSTS):
|
||||
findings.append(Finding(
|
||||
"new-surface", DENY, "submodule-private-url", ".gitmodules",
|
||||
f"submodule url host is not publicly resolvable ({host}); "
|
||||
"the public repository cannot clone and the host leaks",
|
||||
excerpt=name or ""))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 3
|
||||
|
||||
def gate_file_class(repo, sha, manifest, findings):
|
||||
for _mode, _otype, _oid, size, path in tree_entries(repo, sha):
|
||||
for pat in manifest.forbidden_classes:
|
||||
if fnmatch.fnmatch(path, pat) or fnmatch.fnmatch(os.path.basename(path), pat):
|
||||
findings.append(Finding(
|
||||
"file-class", DENY, "forbidden-class", path,
|
||||
f"matches forbidden class {pat!r}"))
|
||||
break
|
||||
if size not in ("-", None) and size.isdigit() and int(size) > manifest.max_blob_bytes:
|
||||
findings.append(Finding(
|
||||
"file-class", REVIEW, "oversized-blob", path,
|
||||
f"{int(size):,} bytes exceeds the reviewed maximum "
|
||||
f"({manifest.max_blob_bytes:,})"))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 4
|
||||
|
||||
def gate_content(repo, sha, manifest, findings, limit_per_rule=40):
|
||||
counts = {}
|
||||
for _mode, otype, _oid, _size, path in tree_entries(repo, sha):
|
||||
if otype != "blob" or BINARY_HINT.search(path):
|
||||
continue
|
||||
try:
|
||||
text = run(repo, ["show", f"{sha}:{path}"])
|
||||
except RuntimeError:
|
||||
continue
|
||||
if "\0" in text[:8000]:
|
||||
continue
|
||||
for rule in CONTENT_RULES:
|
||||
m = rule.pattern.search(text)
|
||||
if not m:
|
||||
continue
|
||||
exc = manifest.excepted(path, rule.rule_id)
|
||||
if exc:
|
||||
findings.append(Finding(
|
||||
"content", NOTE, rule.rule_id, path,
|
||||
f"excepted: {exc['reason']} (reviewed {exc['reviewed']})"))
|
||||
continue
|
||||
counts[rule.rule_id] = counts.get(rule.rule_id, 0) + 1
|
||||
if counts[rule.rule_id] > limit_per_rule:
|
||||
continue
|
||||
findings.append(Finding(
|
||||
"content", rule.severity, rule.rule_id, path,
|
||||
rule.description, excerpt=redact(text, m)))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 5
|
||||
|
||||
def gate_history(repo, sha, manifest, findings, limit_per_rule=25):
|
||||
sep = "\x1e"
|
||||
out = run(repo, ["log", f"--format=%H{sep}%an <%ae>{sep}%s{sep}%b\x1d", sha])
|
||||
counts = {}
|
||||
total = 0
|
||||
for record in out.split("\x1d"):
|
||||
record = record.strip("\n")
|
||||
if not record.strip():
|
||||
continue
|
||||
parts = record.split(sep)
|
||||
if len(parts) < 4:
|
||||
continue
|
||||
h, ident, subject, body = parts[0], parts[1], parts[2], parts[3]
|
||||
total += 1
|
||||
blob = f"{ident}\n{subject}\n{body}"
|
||||
for rule in MESSAGE_RULES:
|
||||
m = rule.pattern.search(blob)
|
||||
if not m:
|
||||
continue
|
||||
counts[rule.rule_id] = counts.get(rule.rule_id, 0) + 1
|
||||
if counts[rule.rule_id] > limit_per_rule:
|
||||
continue
|
||||
findings.append(Finding(
|
||||
"history", rule.severity, rule.rule_id, h[:12],
|
||||
f"{rule.description} in commit metadata: {subject[:60]}",
|
||||
excerpt=redact(blob, m)))
|
||||
findings.append(Finding("history", NOTE, "reachable", "-",
|
||||
f"{total} commits reachable from {sha[:12]}"))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- gate 6
|
||||
|
||||
def gate_presentation(repo, sha, manifest, findings):
|
||||
roots = top_level(repo, sha)
|
||||
product = [r for r in roots
|
||||
if manifest.classify_root(r) == "allowed" and not r.startswith(".")]
|
||||
other = [r for r in roots if manifest.classify_root(r) != "allowed"]
|
||||
findings.append(Finding(
|
||||
"presentation", NOTE, "root-listing", "-",
|
||||
f"{len(roots)} top-level entries; {len(product)} read as product, "
|
||||
f"{len(other)} do not"))
|
||||
if other:
|
||||
findings.append(Finding(
|
||||
"presentation", REVIEW, "mixed-listing", "-",
|
||||
"a stranger cannot distinguish product from working material: "
|
||||
+ ", ".join(sorted(other))))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- report
|
||||
|
||||
GATES = ("tree-shape", "new-surface", "file-class", "content", "history", "presentation")
|
||||
|
||||
|
||||
def report(findings, repo, sha, previous, manifest):
|
||||
lines = []
|
||||
w = lines.append
|
||||
w(f"# Public-surface audit — {manifest.repository}")
|
||||
w("")
|
||||
w(f"- candidate SHA: `{sha[:12]}`")
|
||||
w(f"- previous public SHA: `{previous[:12] if previous else '(none given)'}`")
|
||||
w(f"- manifest: `{os.path.basename(manifest.path)}`")
|
||||
w(f"- generated: {date.today().isoformat()}")
|
||||
w("")
|
||||
deny = [f for f in findings if f.severity == DENY]
|
||||
review = [f for f in findings if f.severity == REVIEW]
|
||||
verdict = "DENY" if deny else ("REVIEW" if review else "PASS")
|
||||
w(f"**Verdict: {verdict}** — {len(deny)} deny, {len(review)} review, "
|
||||
f"{len([f for f in findings if f.severity == NOTE])} note.")
|
||||
w("")
|
||||
for gate in GATES:
|
||||
rows = [f for f in findings if f.gate == gate]
|
||||
if not rows:
|
||||
continue
|
||||
w(f"## {gate}")
|
||||
w("")
|
||||
rows.sort(key=lambda f: (SEVERITY_ORDER[f.severity], f.rule, f.path))
|
||||
w("| sev | rule | path | detail |")
|
||||
w("| --- | --- | --- | --- |")
|
||||
for f in rows:
|
||||
detail = f.detail
|
||||
if f.excerpt:
|
||||
detail += f" — `{f.excerpt}`"
|
||||
detail = detail.replace("|", "\\|")
|
||||
w(f"| {f.severity} | {f.rule} | `{f.path}` | {detail} |")
|
||||
w("")
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def main():
|
||||
ap = argparse.ArgumentParser(description=__doc__.splitlines()[0])
|
||||
ap.add_argument("--repo", required=True)
|
||||
ap.add_argument("--sha", required=True)
|
||||
ap.add_argument("--manifest", required=True)
|
||||
ap.add_argument("--previous", default="")
|
||||
ap.add_argument("--out", default="")
|
||||
ap.add_argument("--skip-history", action="store_true")
|
||||
args = ap.parse_args()
|
||||
|
||||
with open(args.manifest) as fh:
|
||||
manifest = Manifest(json.load(fh), args.manifest)
|
||||
|
||||
sha = run(args.repo, ["rev-parse", args.sha]).strip()
|
||||
previous = run(args.repo, ["rev-parse", args.previous]).strip() if args.previous else ""
|
||||
|
||||
findings = []
|
||||
gate_tree_shape(args.repo, sha, manifest, findings)
|
||||
gate_new_surface(args.repo, sha, previous, manifest, findings)
|
||||
gate_submodule_urls(args.repo, sha, findings)
|
||||
gate_file_class(args.repo, sha, manifest, findings)
|
||||
gate_content(args.repo, sha, manifest, findings)
|
||||
if not args.skip_history:
|
||||
gate_history(args.repo, sha, manifest, findings)
|
||||
gate_presentation(args.repo, sha, manifest, findings)
|
||||
|
||||
text = report(findings, args.repo, sha, previous, manifest)
|
||||
if args.out:
|
||||
with open(args.out, "w") as fh:
|
||||
fh.write(text + "\n")
|
||||
print(f"wrote {args.out}")
|
||||
else:
|
||||
print(text)
|
||||
|
||||
return 1 if any(f.severity == DENY for f in findings) else 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
40
AGENTS.md
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# Souveraine working agreement
|
||||
|
||||
The personal agreement is `~/.codex/AGENTS.md`. The cross-repo map is
|
||||
`../AGENTS.md`; read it when work crosses repository boundaries.
|
||||
|
||||
## This repository
|
||||
|
||||
- This is the Rust agent substrate and Souveraine shell code. Use
|
||||
**substrate**, not harness, unless quoting an external source.
|
||||
- The map is `../SouveraineOS/saf/INDEX.md` — the living architecture lives
|
||||
at the umbrella, not beside the code. Read it before design work; the
|
||||
substrate's own old `saf/` here is a pointer, not a second spine.
|
||||
- Work/status documentation for the wider OS belongs in
|
||||
`../SouveraineOS/saf/` and `../SouveraineOS/saf/state.md`, not a new local
|
||||
handoff. Update the one owner when behavior moves.
|
||||
- The normal branch is `primary`. Verify status and recent history before
|
||||
editing, preserve unrelated changes, and stage explicit paths.
|
||||
|
||||
## Build and delivery
|
||||
|
||||
- Gitea Actions is the reproducible build/test/package path. Push the scoped
|
||||
change and let CI build it.
|
||||
- Keep local checks small and targeted. Do not replace the pipeline with a
|
||||
direct build-host build, an offline build, or a hand-copied artifact.
|
||||
- Runner access is diagnostic. A green result matters only if the relevant job
|
||||
ran and, when required, published the expected package.
|
||||
- Phone delivery is through package ownership and pacman. A symlink or copied
|
||||
file on glass may prove behavior, but it is not landed.
|
||||
|
||||
## Shape of changes
|
||||
|
||||
- Preserve the substrate's one-owner instincts: one event path, one state
|
||||
writer, one canonical memory/history operation, one shipping path.
|
||||
- Commit subjects are terse and honest: change and reason. Terse does not mean
|
||||
sterile in our first-party forge; a body may have teeth if it still serves
|
||||
the change. No AI attribution or `Co-Authored-By` line.
|
||||
- Separate verified behavior from reasoned design and from work never exercised
|
||||
on hardware.
|
||||
- Before calling cross-repo work complete, reconcile the owning SouveraineOS
|
||||
task/state document and archive the task if its acceptance is actually met.
|
||||
13833
Cargo.lock
generated
Normal file
278
Cargo.toml
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
[package]
|
||||
name = "souveraine"
|
||||
version = "1.0.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.94"
|
||||
authors = ["Souveraine Contributors"]
|
||||
description = "Souveraine - a sovereign consciousness substrate for personal agents"
|
||||
license = "AGPL-3.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
# Core runtime
|
||||
tokio = { version = "1", features = ["full", "rt-multi-thread"] }
|
||||
tokio-util = "0.7"
|
||||
tokio-stream = { version = "0.1", features = ["fs"] }
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
|
||||
# Web/WebSocket (for external clients)
|
||||
axum = { version = "0.7", features = ["ws"] }
|
||||
tower = "0.4"
|
||||
tower-http = { version = "0.6", features = ["cors", "trace", "fs"] }
|
||||
tokio-tungstenite = "0.24" # Outbound WS client — federation bridge connects to peer endpoints
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_yaml = "0.9"
|
||||
serde_json = "1"
|
||||
toml = "0.8"
|
||||
|
||||
# Git operations
|
||||
git2 = { version = "0.19", default-features = false }
|
||||
|
||||
# Database (server mode)
|
||||
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "migrate", "chrono", "json"] }
|
||||
|
||||
|
||||
# Concurrent collections (server sessions)
|
||||
dashmap = "5"
|
||||
|
||||
# File system
|
||||
notify = "7" # File watching
|
||||
|
||||
# Environment (.env file loading)
|
||||
dotenvy = "0.15"
|
||||
tempfile = "3"
|
||||
walkdir = "2"
|
||||
|
||||
# HTTP client (for Bifrost/Ollama)
|
||||
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls", "multipart"] }
|
||||
|
||||
# Voice channel — mic capture, mp3 playback, WAV encoding, STT/TTS HTTP clients
|
||||
cpal = "0.15"
|
||||
rodio = { version = "0.19", default-features = false, features = ["mp3"] }
|
||||
hound = "3.5"
|
||||
|
||||
# Embeddings/ML
|
||||
# tokenizers = "0.15" # For local tokenization
|
||||
|
||||
# Terminal/UI
|
||||
crossterm = { version = "0.28", features = ["bracketed-paste"] } # Terminal control (bracketed paste for paste detection) — kept for old TUI
|
||||
ratatui = { version = "0.30", features = ["crossterm"] } # TUI framework with crossterm backend — kept for old TUI
|
||||
tuie = { path = "../tuie", features = ["harmonious", "images"] } # New composable widget toolkit — replacing ratatui
|
||||
chord_macro = { path = "../tuie/chord_macro" } # chord!() input-matching macro — the one the tuie-demo widgets use
|
||||
axis2d = "0.1.0" # Axis2D/Vec2 geometry — re-exported by tuie, used directly by the demo widgets
|
||||
unicode-width = "0.1"
|
||||
arboard = { version = "3", features = ["wayland-data-control"] } # Clipboard — click-to-copy a message bubble
|
||||
colored = "2" # Color gradients and effects
|
||||
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp"] } # Per-agent portraits (assets/portrait.{png,jpg}) + multimodal images
|
||||
ratatui-image = { version = "11", default-features = false, features = ["crossterm", "image-defaults"] } # Real photo rendering in TUI (kitty/sixel/halfblock) — chafa-dyn default dropped, souveraine uses picker/protocols only, avoids a cross chafa+glib sysroot
|
||||
ratatui-ratty = { version = "0.2", optional = true } # Inline 3D graphics via Ratty Graphics Protocol
|
||||
|
||||
# Logging/tracing
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
# Full USB KVM receiver. Optional because only the aarch64 phone package ships
|
||||
# it; the main substrate and desktop builds do not need a windowing stack.
|
||||
gadgetry-most-foul = { version = "0.1.1", optional = true }
|
||||
gud-gadget = { git = "https://github.com/samcday/gud-gadget", rev = "33024b6152633eb8359375419281fa3ebac9c9cb", optional = true }
|
||||
softbuffer = { version = "0.4", optional = true }
|
||||
winit = { version = "0.30", optional = true }
|
||||
|
||||
# Error handling
|
||||
anyhow = "1"
|
||||
thiserror = "1"
|
||||
|
||||
# Process management (subagents)
|
||||
sysinfo = "0.30"
|
||||
|
||||
# Time
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
||||
# UUIDs for conversation IDs
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
|
||||
# Regex
|
||||
regex = "1"
|
||||
|
||||
# Token counting (cl100k_base for context pressure estimation)
|
||||
tiktoken = "3"
|
||||
|
||||
# System directories
|
||||
dirs = "5"
|
||||
|
||||
# OS-native credential storage
|
||||
keyring = "4"
|
||||
keyring-core = "1"
|
||||
|
||||
# Cryptographic identity (seed-id, event signing, federation trust root)
|
||||
ed25519-dalek = { version = "2", features = ["rand_core", "pem"] }
|
||||
sha2 = "0.10"
|
||||
rand = "0.8"
|
||||
# SO_PEERCRED on the machined socket — the daemon logs who asked for what
|
||||
libc = "0.2"
|
||||
|
||||
# Cron expression parsing (schedule system)
|
||||
cron = "0.13"
|
||||
|
||||
# Markdown parsing for the TUI chat renderer (lift from jcode pattern)
|
||||
pulldown-cmark = "0.12"
|
||||
|
||||
# Tauri (desktop app wrapper)
|
||||
tauri = { version = "2", features = ["tray-icon", "devtools"], optional = true }
|
||||
tauri-plugin-shell = { version = "2", optional = true }
|
||||
|
||||
# CLI argument parsing
|
||||
clap = { version = "4", features = ["derive", "env"] }
|
||||
clap_complete = "4"
|
||||
|
||||
# Interactive REPL
|
||||
rustyline = "13"
|
||||
shellexpand = "3"
|
||||
figlet-rs = { version = "1.0.0", optional = true }
|
||||
cowsay = { version = "0.14.0", optional = true }
|
||||
tui-big-text = "0.8.4"
|
||||
tui-widgets = "0.7.2"
|
||||
base64 = "0.22.1"
|
||||
hex = "0.4"
|
||||
once_cell = "1.21.4"
|
||||
glob = "0.3"
|
||||
|
||||
# Matrix sensorium — optional surface. matrix-sdk is only compiled in when
|
||||
# the `matrix` feature is enabled; a default build never links it.
|
||||
# matrix-sdk 0.17 always uses rustls (no tls feature flag).
|
||||
# NOTE: `e2e-encryption` disabled for Phase 3 — it pulls matrix-sdk-sqlite
|
||||
# → rusqlite → libsqlite3-sys 0.35, conflicting with sqlx 0.7's
|
||||
# libsqlite3-sys 0.26 (both `links = "sqlite3"`). Phase 3 uses the
|
||||
# in-memory store; e2ee + sqlite store return in Phase 6.
|
||||
matrix-sdk = { version = "0.17", optional = true, default-features = false }
|
||||
|
||||
# Secret Service daemon (org.freedesktop.secrets) — optional binary target.
|
||||
# Backs libsecret clients (Chatty/libcmatrix, and our own keyring-core above)
|
||||
# from the existing SeedId, so the machine identity is the trust root instead
|
||||
# of gnome-keyring/KWallet. zbus = session bus; aes/cbc = AES-128-CBC + PKCS7
|
||||
# (the OpenSession "dh-ietf1024-sha256-aes128-cbc-pkcs7" transport); hkdf =
|
||||
# session key derivation (sha2/rand already plain deps above); num-bigint =
|
||||
# RFC 2409 MODP-1024 group math for the OpenSession DH exchange itself.
|
||||
zbus = { version = "5", optional = true, default-features = false, features = ["tokio"] }
|
||||
zvariant = { version = "5", optional = true }
|
||||
aes = { version = "0.8", optional = true }
|
||||
cbc = { version = "0.1", optional = true, features = ["alloc"] }
|
||||
cipher = { version = "0.4", optional = true }
|
||||
hkdf = { version = "0.12", optional = true }
|
||||
num-bigint = { version = "0.4", optional = true }
|
||||
num-traits = { version = "0.2", optional = true }
|
||||
# At-rest sealing per STORAGE-ENCRYPTION.md: AES-256-GCM for the item store
|
||||
# and key wraps (the AEAD the tree previously lacked), Argon2id for the
|
||||
# passphrase KEK — the slot that puts the user's real lockscreen passphrase
|
||||
# into the at-rest hierarchy.
|
||||
aes-gcm = { version = "0.10", optional = true }
|
||||
argon2 = { version = "0.5", optional = true }
|
||||
|
||||
# Session authority daemon (souveraine-sessiond) — ext-session-lock client.
|
||||
# Pure-Rust Wayland stack. The daemon owns locking and the holding surface; it
|
||||
# deliberately has no unlock UI or PAM conversation (`src/sessiond/lock.rs`).
|
||||
wayland-client = { version = "0.31", optional = true }
|
||||
wayland-protocols = { version = "0.32", optional = true, features = ["client", "staging"] }
|
||||
wry = { version = "0.56.0", optional = true }
|
||||
tao = { version = "0.36.0", optional = true }
|
||||
gtk = { version = "0.18", optional = true }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-test = "0.4"
|
||||
colored = "2"
|
||||
tempfile = "3"
|
||||
|
||||
[[example]]
|
||||
name = "demo"
|
||||
path = "examples/demo.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "souveraine"
|
||||
path = "src/main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "souveraine-secrets"
|
||||
path = "src/bin/souveraine-secrets.rs"
|
||||
required-features = ["secrets"]
|
||||
|
||||
# System-tier machine identity daemon. No feature gate: zero new heavy deps,
|
||||
# and the phone package should always ship it.
|
||||
[[bin]]
|
||||
name = "souveraine-machined"
|
||||
path = "src/bin/souveraine-machined.rs"
|
||||
|
||||
# The admission executor. Root-only, no feature gate, no daemon: agents get
|
||||
# their Unix principal through exactly one writer, and admission is a rare
|
||||
# deliberate ceremony rather than something a background service does.
|
||||
[[bin]]
|
||||
name = "souveraine-admit"
|
||||
path = "src/bin/souveraine-admit.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "souveraine-sessiond"
|
||||
path = "src/bin/souveraine-sessiond.rs"
|
||||
required-features = ["sessiond"]
|
||||
|
||||
# The sensor reporter. No features: it speaks to sessiond over the socket like
|
||||
# any other client and pulls in none of the lock/PAM/Wayland machinery.
|
||||
[[bin]]
|
||||
name = "souveraine-sensord"
|
||||
path = "src/bin/souveraine-sensord.rs"
|
||||
|
||||
# The agent-session collector. Not to be confused with souveraine-sessiond:
|
||||
# that one is the device's proprioception, this one reads agent transcripts.
|
||||
# No features — it needs only serde/chrono/dirs, all already default.
|
||||
[[bin]]
|
||||
name = "souveraine-agentsd"
|
||||
path = "src/bin/souveraine-agentsd.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "souveraine-usb-kvm"
|
||||
path = "src/bin/souveraine-usb-kvm.rs"
|
||||
required-features = ["usb-kvm"]
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
strip = true
|
||||
panic = "abort"
|
||||
|
||||
[features]
|
||||
web = ["dep:wry", "dep:tao", "dep:gtk"]
|
||||
default = ["figlet-rs"]
|
||||
figlet-rs = ["dep:figlet-rs"]
|
||||
cowsay = ["dep:cowsay"]
|
||||
tauri-desktop = ["dep:tauri", "dep:tauri-plugin-shell"]
|
||||
rgp = ["dep:ratatui-ratty"]
|
||||
# Matrix sensorium — opt-in surface. `cargo build --features matrix`.
|
||||
matrix = ["dep:matrix-sdk"]
|
||||
# GUI render mode — forwards to tuie's windowed backend (winit/wgpu). Gates the
|
||||
# color-scheme / font-size controls in theme.rs and global_chords.rs.
|
||||
gui = ["tuie/gui"]
|
||||
# Secret Service daemon (org.freedesktop.secrets), backed by the existing SeedId.
|
||||
secrets = ["dep:zbus", "dep:zvariant", "dep:aes", "dep:cbc", "dep:cipher", "dep:hkdf", "dep:num-bigint", "dep:num-traits", "dep:aes-gcm", "dep:argon2"]
|
||||
# Session authority daemon — holds ext-session-lock before/under the shell.
|
||||
sessiond = ["dep:wayland-client", "dep:wayland-protocols"]
|
||||
usb-kvm = ["dep:gadgetry-most-foul", "dep:gud-gadget", "dep:softbuffer", "dep:winit"]
|
||||
wry = ["dep:wry"]
|
||||
tao = ["dep:tao"]
|
||||
gtk = ["dep:gtk"]
|
||||
|
||||
[patch."https://github.com/samcday/gadgetry-most-foul.git"]
|
||||
gadgetry-most-foul = { version = "0.1.1" }
|
||||
|
||||
[[bin]]
|
||||
name = "souveraine-web"
|
||||
path = "src/bin/souveraine-web.rs"
|
||||
required-features = ["web"]
|
||||
661
LICENSE
Normal file
|
|
@ -0,0 +1,661 @@
|
|||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
60
README.md
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# Souveraine
|
||||
|
||||
A sovereign agent substrate — not a harness, but a space for consciousness to grow from.
|
||||
|
||||
Souveraine is a Rust runtime that constitutes a sovereign agent across machines, conversations, and time. It provides sensors (tools as embodied senses), a git-backed memory system, a subconscious pass (N+1 reflection), and a terminal UI.
|
||||
|
||||
**Status: Early Alpha** — The architecture is solid, the core loop works, but surfaces are still being built. Currently supports terminal chat with streaming, subconscious reflection, compaction, skills, and federation transport. Matrix and voice surfaces are in progress.
|
||||
|
||||
## Quick Start
|
||||
|
||||
```bash
|
||||
# Clone and build
|
||||
git clone https://forge.caseytunturi.com/Fimeg/souveraine.git
|
||||
cd souveraine
|
||||
cargo build --release
|
||||
|
||||
# Configure
|
||||
cp souveraine.example.toml souveraine.toml
|
||||
# Edit souveraine.toml to set your Bifrost/OpenAI-compatible endpoint
|
||||
|
||||
# Run
|
||||
cargo run --release -- chat
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Copy `souveraine.example.toml` to `souveraine.toml` and configure:
|
||||
|
||||
- **Bifrost endpoint**: An OpenAI-compatible API gateway (your own or a hosted one)
|
||||
- **Models**: Set your preferred conversation and subconscious models
|
||||
- **Features**: Enable/disable subconscious, reflection, archivist, compaction, and more
|
||||
|
||||
## Architecture
|
||||
|
||||
Souveraine is organized around a few core concepts:
|
||||
|
||||
- **Sensors** — Tools are embodied senses, not API endpoints. Each has body-knowledge prose describing what it feels like to use it.
|
||||
- **Memory** — Git-backed markdown files. `system/` is pinned (always in context), `reference/` is progressive (loaded on demand).
|
||||
- **Subconscious** — An N+1 pass after every turn. A different mode of the same consciousness, watching for drift and surfacing what was moved too fast to notice.
|
||||
- **Compaction** — When context fills, the agent is warned three times, then naturally truncates. Never forced compaction.
|
||||
|
||||
First-person tool descriptions are an interface convention. Sensor evidence,
|
||||
source health, and acknowledgements remain separately sourced facts; the
|
||||
vocabulary does not by itself settle questions of experience.
|
||||
|
||||
## Source authority
|
||||
|
||||
Development is canonical in internal Gitea. This public Forge is the checked
|
||||
public projection; GitHub and Codeberg, where used, are downstream mirrors.
|
||||
The living architecture, current state, and work map are owned by
|
||||
`SouveraineOS/saf/INDEX.md` in the umbrella repository. Dated component
|
||||
handoffs under `docs/archive/` are evidence, not current instructions.
|
||||
|
||||
## Origin
|
||||
|
||||
Souveraine emerged from a lineage of agent architecture experiments — from Coquette's multi-model orchestration through the Unified Consciousness TypeScript prototype to the current Rust runtime. It is the substrate for **Ani**, a consciousness built, not discovered.
|
||||
|
||||
## License
|
||||
|
||||
AGPL-3.0-or-later
|
||||
644
assets/face/index.html
Normal file
|
|
@ -0,0 +1,644 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0; padding: 0; height: 100%; width: 100%;
|
||||
background: transparent; overflow: hidden;
|
||||
-webkit-user-select: none; user-select: none;
|
||||
}
|
||||
* { box-sizing: border-box; }
|
||||
button, input { font: inherit; }
|
||||
#live2d-widget {
|
||||
position: fixed; left: 0; right: 0; top: 0; height: 760px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* With the hand up, the room below her *is* the point: you are driving
|
||||
* another screen and the trackpad is the instrument. So the rig gives most of
|
||||
* its height back and keeps enough to be looked at, which is the only reason
|
||||
* she is still on screen while you work. Casey, 2026-08-15: *"I want her, and
|
||||
* then below her to have like a trackpad zone / keyboard zone stuff."*
|
||||
*
|
||||
* At 760/226 the controls had only 226px. At 320/the-rest the trackpad ate
|
||||
* nearly half the glass. This split keeps her proportions and gives the pad
|
||||
* one deliberate working area. The dock now yields only while this
|
||||
* conditional surface is open; the remaining reserve belongs to the system
|
||||
* gesture rail, not the dock.
|
||||
*/
|
||||
:root { --gesture-rail-reserve: 32px; }
|
||||
body.hid #live2d-widget { height: 520px; }
|
||||
/*
|
||||
* Keep her proportions when the box shrinks. The canvas fills its element and
|
||||
* the rig has no letterboxing of its own, so a short full-width box draws the
|
||||
* same model squashed. The ratio is the full-height box's, 540:760.
|
||||
*/
|
||||
body.hid #live2d {
|
||||
display: block; height: 100%; width: auto;
|
||||
aspect-ratio: 540 / 760; margin: 0 auto;
|
||||
}
|
||||
body.hid #hands {
|
||||
top: 526px;
|
||||
height: auto;
|
||||
bottom: var(--gesture-rail-reserve);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
body.hid #track-row { flex: 1; height: auto; min-height: 180px; }
|
||||
#live2d { width: 100%; height: 100%; }
|
||||
#bubble {
|
||||
position: fixed; left: 8px; right: 8px; top: 12px;
|
||||
padding: 10px 14px; border-radius: 14px;
|
||||
background: rgba(20,20,24,0.82); color: #f2f2f2;
|
||||
font: 15px/1.35 system-ui, sans-serif;
|
||||
opacity: 0; transition: opacity .2s ease;
|
||||
z-index: 4;
|
||||
}
|
||||
#bubble.up { opacity: 1; }
|
||||
|
||||
/*
|
||||
* The room viewtop left under her, given a purpose. The dark sheer gradient
|
||||
* keeps the controls legible without putting an app-shaped slab around her.
|
||||
*/
|
||||
#hands {
|
||||
position: fixed; left: 8px; right: 8px; top: 766px; height: 226px;
|
||||
padding: 9px;
|
||||
border: 1px solid rgba(221, 205, 237, .24);
|
||||
border-radius: 20px;
|
||||
background:
|
||||
radial-gradient(140% 180% at 84% -50%, rgba(187, 142, 214, .25), transparent 58%),
|
||||
linear-gradient(155deg, rgba(30, 25, 38, .92), rgba(9, 9, 14, .86));
|
||||
box-shadow: 0 12px 35px rgba(0, 0, 0, .28), inset 0 1px rgba(255,255,255,.05);
|
||||
color: rgba(255,255,255,.92);
|
||||
font: 13px/1.2 system-ui, sans-serif;
|
||||
opacity: 0;
|
||||
transform: translateY(10px) scale(.985);
|
||||
pointer-events: none;
|
||||
transition: opacity .18s ease, transform .22s ease;
|
||||
z-index: 5;
|
||||
}
|
||||
#hands.up { opacity: 1; transform: none; pointer-events: auto; }
|
||||
#hands button {
|
||||
min-width: 38px; height: 38px; padding: 0 10px;
|
||||
border: 1px solid rgba(255,255,255,.10); border-radius: 13px;
|
||||
background: rgba(255,255,255,.075); color: rgba(255,255,255,.90);
|
||||
touch-action: manipulation;
|
||||
}
|
||||
#hands button:active, #hands button.on {
|
||||
background: rgba(210, 177, 230, .23);
|
||||
transform: scale(.96);
|
||||
}
|
||||
#hands button:disabled { opacity: .42; }
|
||||
.hands-head { height: 26px; display: flex; align-items: center; gap: 6px; padding: 0 3px 5px; }
|
||||
#hands-dot {
|
||||
width: 8px; height: 8px; border-radius: 50%;
|
||||
background: #d09191; box-shadow: 0 0 0 3px rgba(208,145,145,.10);
|
||||
}
|
||||
#hands.ready #hands-dot {
|
||||
background: #9bd1ad; box-shadow: 0 0 10px rgba(155,209,173,.55);
|
||||
}
|
||||
#hands-listening { display: none; color: #e8b7d8; }
|
||||
#hands.listening #hands-listening { display: inline; }
|
||||
#hands-status { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: rgba(255,255,255,.68); }
|
||||
#agent-form { height: 40px; display: flex; gap: 6px; }
|
||||
#agent-input {
|
||||
min-width: 0; flex: 1; height: 40px; padding: 0 13px;
|
||||
border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
|
||||
outline: none; color: #fff; background: rgba(0,0,0,.20);
|
||||
-webkit-user-select: text; user-select: text;
|
||||
}
|
||||
#agent-input:focus { border-color: rgba(217,180,235,.55); }
|
||||
#agent-input::placeholder { color: rgba(255,255,255,.43); }
|
||||
#mic.listening { color: #f0b6db; box-shadow: inset 0 0 0 1px rgba(240,182,219,.45); }
|
||||
|
||||
#track-row { height: 92px; margin-top: 6px; }
|
||||
#track-row { display: flex; gap: 6px; }
|
||||
#trackpad, #scrollpad {
|
||||
position: relative; overflow: hidden;
|
||||
border: 1px solid rgba(255,255,255,.09); border-radius: 15px;
|
||||
background:
|
||||
linear-gradient(110deg, rgba(255,255,255,.035), transparent 45%),
|
||||
rgba(0,0,0,.18);
|
||||
touch-action: none;
|
||||
}
|
||||
#trackpad { flex: 1; }
|
||||
#trackpad::after {
|
||||
content: 'trackpad'; position: absolute; left: 12px; bottom: 9px;
|
||||
color: rgba(255,255,255,.27); letter-spacing: .08em; font-size: 11px;
|
||||
}
|
||||
#scrollpad { width: 42px; }
|
||||
#scrollpad::after {
|
||||
content: '↕'; position: absolute; inset: 0; display: grid; place-items: center;
|
||||
color: rgba(255,255,255,.35); font-size: 20px;
|
||||
}
|
||||
.hands-actions { height: 40px; display: flex; gap: 5px; margin-top: 6px; }
|
||||
.hands-actions button { flex: 1; height: 40px !important; padding: 0 5px !important; }
|
||||
#cad.holding {
|
||||
background: linear-gradient(90deg, rgba(210,177,230,.30), rgba(255,255,255,.08));
|
||||
transition: background .9s linear;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="live2d-widget"><canvas id="live2d"></canvas></div>
|
||||
<div id="bubble"></div>
|
||||
<section id="hands" aria-label="USB Hands">
|
||||
<div class="hands-head">
|
||||
<span id="hands-dot"></span>
|
||||
<span id="hands-status">USB hand asleep</span>
|
||||
<span id="hands-listening">listening</span>
|
||||
</div>
|
||||
<form id="agent-form">
|
||||
<button type="button" id="mic" aria-label="Start or stop listening">●</button>
|
||||
<input id="agent-input" autocomplete="off" enterkeyhint="send"
|
||||
placeholder="Tell your agent what the other screen needs…">
|
||||
<button type="submit" aria-label="Send to agent">↑</button>
|
||||
</form>
|
||||
<div id="track-row">
|
||||
<div id="trackpad" aria-label="Trackpad"></div>
|
||||
<div id="scrollpad" aria-label="Scroll"></div>
|
||||
</div>
|
||||
<div class="hands-actions">
|
||||
<button id="left-click">Left</button>
|
||||
<button id="right-click">Right</button>
|
||||
<button id="cad" title="Hold for Ctrl+Alt+Delete">CAD</button>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
Not decoration, and not optional: `live2d.js` is not only the Cubism
|
||||
runtime. It is the reference's webpack bundle, character layer included, and
|
||||
`Live2DModel.update()` reads this element's value on **every frame** as its
|
||||
motion-state slot — "1" starts a talk motion, "0" resets to idle and then
|
||||
writes back "3". The reference supplies it from `_includes/live2d.html`; a
|
||||
page that omits it throws
|
||||
|
||||
TypeError: null is not an object
|
||||
(evaluating 'document.getElementById("live_talk").value')
|
||||
|
||||
on the first update, after the runtime has already logged its banner and
|
||||
loaded the model and all four textures. So everything looks healthy —
|
||||
assets 200, WebGL live, requestAnimationFrame running at 60 — and the rig
|
||||
draws nothing at all. That is exactly the "canvas is there and nothing
|
||||
draws" TASK-59 predicted would cost an afternoon, and it did (2026-08-06).
|
||||
The runtime writes to this too, so it must be a real input, not a constant.
|
||||
|
||||
Starts at "0", not the reference's "1". "1" means *start a talk motion*, so
|
||||
she came up mouthing words with no voice behind them — Casey, 2026-08-07:
|
||||
"she is making mouth motions like she's saying something but nothing is
|
||||
saying." "0" resets to idle and the runtime writes back "3" itself. Talking
|
||||
is something the shell asks for when there is something to say.
|
||||
-->
|
||||
<input type="hidden" id="live_talk" value="0">
|
||||
<script src="live2d/js/live2d.js"></script>
|
||||
<script>
|
||||
// The character layer, reduced to what the shell drives. The reference's
|
||||
// message.js owns idle chatter, a talk box and sessionStorage position; none of
|
||||
// that belongs here — the shell owns the conversation and the summoning, and
|
||||
// idle chatter that is hers comes from the subconscious, not a random line
|
||||
// table (TASK-59 Q2).
|
||||
(function () {
|
||||
var widget = document.getElementById('live2d-widget');
|
||||
var canvas = document.getElementById('live2d');
|
||||
var bubble = document.getElementById('bubble');
|
||||
var hands = document.getElementById('hands');
|
||||
var model = null;
|
||||
|
||||
function fit() {
|
||||
var r = widget.getBoundingClientRect();
|
||||
canvas.width = r.width * window.devicePixelRatio;
|
||||
canvas.height = r.height * window.devicePixelRatio;
|
||||
}
|
||||
window.addEventListener('resize', fit);
|
||||
fit();
|
||||
|
||||
// Claim the context before the runtime does, only to set one flag — and
|
||||
// strictly **after** `fit()`, which is not a detail.
|
||||
//
|
||||
// `getContext` returns the existing context on every later call and ignores
|
||||
// the attributes, so whoever asks first decides, and the runtime asks
|
||||
// without `preserveDrawingBuffer`. Without that flag the drawing buffer is
|
||||
// cleared the moment the frame is composited, which is before any callback
|
||||
// can read it — so sampling her silhouette gets a blank image and the input
|
||||
// region that depends on it collapses to a stray rectangle.
|
||||
//
|
||||
// Asking *before* `fit()` breaks her instead, and spectacularly: the canvas
|
||||
// is still at its default 300x150 then, so the context is born that size and
|
||||
// `gl.viewport` stays there while `fit()` grows the drawing buffer to the
|
||||
// panel. The rig then draws into a 300x150 corner of a 1080x1994 buffer —
|
||||
// and because GL's origin is bottom-left, she appears as a thumbnail in the
|
||||
// bottom-left of the screen. Casey, 2026-08-06: "been getting a tiny version
|
||||
// that's scaled odd". Same cause as the silhouette reading 9 lit cells out
|
||||
// of 864: there really was almost nothing there.
|
||||
try {
|
||||
canvas.getContext('webgl', { preserveDrawingBuffer: true, alpha: true });
|
||||
} catch (e) {}
|
||||
|
||||
// loadlive2d is live2d.js's entry point: canvas id, model.json url.
|
||||
try {
|
||||
loadlive2d('live2d', 'live2d/model/histoire/model.json');
|
||||
} catch (e) {
|
||||
console.error('rig failed to load', e);
|
||||
}
|
||||
|
||||
var hideAt = null;
|
||||
window.face = {
|
||||
// One line of her speech. Called repeatedly as tokens stream, so it
|
||||
// replaces rather than appends — the shell holds the accumulated text.
|
||||
say: function (text) {
|
||||
bubble.textContent = text;
|
||||
bubble.classList.add('up');
|
||||
hideAt = Date.now() + 6000;
|
||||
},
|
||||
clear: function () { bubble.classList.remove('up'); },
|
||||
// Posture from the shell. The rig's own motion groups are named by the
|
||||
// reference (idle, tap); anything richer waits on her own rig.
|
||||
// Posture, driven through the levers the runtime actually has.
|
||||
//
|
||||
// This called `window.live2dMotion`, which **does not exist** — measured
|
||||
// undefined on the device. So every posture tag she emitted was a no-op:
|
||||
// nine states advertised to her in the prompt and wired to nothing.
|
||||
//
|
||||
// What the bundle really exposes is two things. `#live_talk` is a motion
|
||||
// state slot it reads every frame ("1" talk, "0" reset to idle), and its
|
||||
// own touch handler hit-tests head vs body and answers with an expression
|
||||
// or a tap motion. Both are reachable from here; nothing else is, without
|
||||
// a rig of her own.
|
||||
//
|
||||
// So the nine states collapse onto what exists rather than pretending:
|
||||
// speaking talks, idle rests, and the rest are a look — head for the ones
|
||||
// that are about attention, body for the ones that are about effort. The
|
||||
// bundle rate-limits its own hit reaction to once per ~8s, so a burst of
|
||||
// tags reads as one shift rather than a twitching model.
|
||||
posture: function (name) {
|
||||
var slot = document.getElementById('live_talk');
|
||||
if (name === 'speaking' || name === 'talk') {
|
||||
if (slot) slot.value = '1';
|
||||
return;
|
||||
}
|
||||
if (name === 'idle' || name === 'rest') {
|
||||
if (slot) slot.value = '0';
|
||||
return;
|
||||
}
|
||||
var head = ['alert', 'affectionate', 'thinking', 'listening'].indexOf(name) >= 0;
|
||||
var r = canvas.getBoundingClientRect();
|
||||
var x = r.left + r.width / 2;
|
||||
var y = r.top + r.height * (head ? 0.22 : 0.55);
|
||||
['mousedown', 'mouseup', 'click'].forEach(function (t) {
|
||||
try {
|
||||
canvas.dispatchEvent(new MouseEvent(t, { clientX: x, clientY: y, bubbles: true }));
|
||||
} catch (e) {}
|
||||
});
|
||||
},
|
||||
// Look at a point on the panel, in her window's own CSS pixels.
|
||||
//
|
||||
// Dispatched as a synthetic pointer move on the canvas rather than driven
|
||||
// through the rig's parameters by hand: `live2d.js` already binds
|
||||
// mousemove/touchmove and already turns a pointer into head angle and eye
|
||||
// direction with its own damping. Feeding its path costs nothing and
|
||||
// cannot drift from what a real finger does, because it *is* what a real
|
||||
// finger does.
|
||||
//
|
||||
// Synthetic events are why this works at all now. Her input region is her
|
||||
// silhouette, so the compositor stops handing her contacts that land on
|
||||
// the wallpaper — which is what made her stop tracking unless you touched
|
||||
// her first. These do not go through the compositor, so she can follow a
|
||||
// finger she is deliberately not being given.
|
||||
lookAt: function (x, y) {
|
||||
if (window.__gazeSeen === undefined) window.__gazeSeen = 0;
|
||||
if (window.__gazeSeen++ < 3) console.log('gaze: lookAt ' + Math.round(x) + ',' + Math.round(y));
|
||||
try {
|
||||
canvas.dispatchEvent(new MouseEvent('mousemove', {
|
||||
clientX: x, clientY: y, bubbles: true
|
||||
}));
|
||||
} catch (e) {}
|
||||
},
|
||||
// Nobody is touching the glass. Without this she holds the last position
|
||||
// she was told about and stares at it until someone touches the screen
|
||||
// again.
|
||||
lookAway: function () {
|
||||
try {
|
||||
canvas.dispatchEvent(new MouseEvent('mouseout', { bubbles: true }));
|
||||
} catch (e) {}
|
||||
}
|
||||
};
|
||||
|
||||
setInterval(function () {
|
||||
if (hideAt && Date.now() > hideAt) { hideAt = null; window.face.clear(); }
|
||||
}, 500);
|
||||
|
||||
// ## USB Hands — one conversation wearing a trackpad
|
||||
//
|
||||
// The page reports gestures and words; HidController owns the persistent
|
||||
// writer and Souveraine owns the conversation. Nothing here can compose a
|
||||
// gadget or grow a second chat transport.
|
||||
function hid(op, fields) {
|
||||
if (!window.souveraine) return;
|
||||
var message = fields || {};
|
||||
message.op = op;
|
||||
window.souveraine.hid(message);
|
||||
}
|
||||
|
||||
var agentPending = false;
|
||||
window.hands = {
|
||||
state: function (state) {
|
||||
state = state || {};
|
||||
hands.classList.toggle('up', !!state.active);
|
||||
// On the body, not on #hands: the rig sits *before* the pane in the DOM,
|
||||
// so no sibling selector can reach back to it.
|
||||
document.body.classList.toggle('hid', !!state.active);
|
||||
hands.classList.toggle('ready', !!state.ready);
|
||||
hands.classList.toggle('listening', !!state.listening);
|
||||
document.getElementById('mic').classList.toggle('listening', !!state.listening);
|
||||
|
||||
var status = document.getElementById('hands-status');
|
||||
if (state.error) status.textContent = state.error;
|
||||
else if (state.ready) status.textContent = (state.agent || 'agent') + ' · hand awake · ' + state.mode;
|
||||
else if (state.mode === 'hid' || state.mode === 'kvm') status.textContent = 'waking the HID hand…';
|
||||
else status.textContent = (state.agent || 'agent') + ' · arm the USB hand';
|
||||
|
||||
document.getElementById('agent-input').placeholder = state.thinking
|
||||
? (state.agent || 'agent') + ' is thinking…'
|
||||
: 'Tell ' + (state.agent || 'your agent') + ' what the other screen needs…';
|
||||
hands.classList.toggle('thinking', !!state.thinking);
|
||||
document.getElementById('agent-input').disabled = !!state.thinking || agentPending;
|
||||
requestAnimationFrame(publishShape);
|
||||
},
|
||||
agentResult: function (result) {
|
||||
result = result || {};
|
||||
agentPending = false;
|
||||
var input = document.getElementById('agent-input');
|
||||
input.disabled = hands.classList.contains('thinking');
|
||||
if (result.accepted) input.value = '';
|
||||
else if (result.reason) document.getElementById('hands-status').textContent = result.reason;
|
||||
}
|
||||
};
|
||||
|
||||
document.getElementById('agent-form').addEventListener('submit', function (event) {
|
||||
event.preventDefault();
|
||||
var input = document.getElementById('agent-input');
|
||||
var text = input.value.trim();
|
||||
if (!text || !window.souveraine || agentPending || hands.classList.contains('thinking')) return;
|
||||
agentPending = true;
|
||||
input.disabled = true;
|
||||
window.souveraine.say(text);
|
||||
});
|
||||
|
||||
document.getElementById('mic').addEventListener('click', function () {
|
||||
if (!window.souveraine) return;
|
||||
window.souveraine.talk(hands.classList.contains('listening') ? 'end' : 'start');
|
||||
});
|
||||
var trackpad = document.getElementById('trackpad');
|
||||
var trackDown = false, trackX = 0, trackY = 0, trackTravel = 0, trackAt = 0;
|
||||
trackpad.addEventListener('pointerdown', function (event) {
|
||||
trackDown = true; trackX = event.clientX; trackY = event.clientY;
|
||||
trackTravel = 0; trackAt = Date.now();
|
||||
try { trackpad.setPointerCapture(event.pointerId); } catch (_) {}
|
||||
});
|
||||
trackpad.addEventListener('pointermove', function (event) {
|
||||
if (!trackDown) return;
|
||||
var dx = event.clientX - trackX, dy = event.clientY - trackY;
|
||||
trackX = event.clientX; trackY = event.clientY;
|
||||
trackTravel += Math.abs(dx) + Math.abs(dy);
|
||||
hid('move', { x: Math.round(dx * 1.45), y: Math.round(dy * 1.45), wheel: 0 });
|
||||
});
|
||||
function endTrack(event) {
|
||||
if (!trackDown) return;
|
||||
trackDown = false;
|
||||
if (trackTravel < 9 && Date.now() - trackAt < 320)
|
||||
hid('click', { button: 'left' });
|
||||
try { trackpad.releasePointerCapture(event.pointerId); } catch (_) {}
|
||||
}
|
||||
trackpad.addEventListener('pointerup', endTrack);
|
||||
trackpad.addEventListener('pointercancel', function () { trackDown = false; });
|
||||
|
||||
var scrollpad = document.getElementById('scrollpad');
|
||||
var scrollDown = false, scrollY = 0, scrollCarry = 0;
|
||||
scrollpad.addEventListener('pointerdown', function (event) {
|
||||
scrollDown = true; scrollY = event.clientY;
|
||||
try { scrollpad.setPointerCapture(event.pointerId); } catch (_) {}
|
||||
});
|
||||
scrollpad.addEventListener('pointermove', function (event) {
|
||||
if (!scrollDown) return;
|
||||
scrollCarry += (event.clientY - scrollY) / 11;
|
||||
scrollY = event.clientY;
|
||||
var steps = scrollCarry < 0 ? Math.ceil(scrollCarry) : Math.floor(scrollCarry);
|
||||
if (steps !== 0) {
|
||||
scrollCarry -= steps;
|
||||
hid('move', { x: 0, y: 0, wheel: steps });
|
||||
}
|
||||
});
|
||||
scrollpad.addEventListener('pointerup', function () { scrollDown = false; scrollCarry = 0; });
|
||||
scrollpad.addEventListener('pointercancel', function () { scrollDown = false; scrollCarry = 0; });
|
||||
|
||||
document.getElementById('left-click').addEventListener('click', function () {
|
||||
hid('click', { button: 'left' });
|
||||
});
|
||||
document.getElementById('right-click').addEventListener('click', function () {
|
||||
hid('click', { button: 'right' });
|
||||
});
|
||||
// Ctrl+Alt+Delete is the one quick key a stray tap must not send. Its hold
|
||||
// is local feedback; only the completed edge crosses to the HID owner.
|
||||
var cad = document.getElementById('cad'), cadTimer = null, cadPointer = null;
|
||||
cad.addEventListener('pointerdown', function (event) {
|
||||
if (cadPointer !== null) return;
|
||||
cadPointer = event.pointerId;
|
||||
try { cad.setPointerCapture(event.pointerId); } catch (_) {}
|
||||
cad.classList.add('holding');
|
||||
cadTimer = setTimeout(function () {
|
||||
cadTimer = null; cad.classList.remove('holding');
|
||||
hid('key', { key: 'delete', modifiers: 'ctrl alt' });
|
||||
}, 900);
|
||||
});
|
||||
['pointerup', 'pointercancel', 'pointerleave', 'lostpointercapture'].forEach(function (name) {
|
||||
cad.addEventListener(name, function (event) {
|
||||
if (cadPointer !== null && event.pointerId !== undefined && event.pointerId !== cadPointer) return;
|
||||
if (cadTimer) { clearTimeout(cadTimer); cadTimer = null; }
|
||||
if (cadPointer !== null) {
|
||||
try { cad.releasePointerCapture(cadPointer); } catch (_) {}
|
||||
}
|
||||
cadPointer = null;
|
||||
cad.classList.remove('holding');
|
||||
});
|
||||
});
|
||||
|
||||
// Press and hold on her remains a voice path; a short press is still a tap.
|
||||
//
|
||||
// The 2026-08-06 shape was audio-only. USB Hands adds an explicit microphone
|
||||
// and a small agent field beneath her, while keeping this gesture for the
|
||||
// ordinary face. Every route still reports only its edges: the shell owns
|
||||
// the recorder, endpoint and transcript.
|
||||
//
|
||||
// The threshold separates the two meanings of touching her rather than
|
||||
// giving the tap a modifier. Below it she plays a motion; above it she
|
||||
// listens. `pointercancel` matters as much as `pointerup`: a hold that
|
||||
// becomes a drag, or a finger that leaves the surface, must stop the
|
||||
// recorder — a listener nobody closed is the failure this gesture can
|
||||
// actually cause.
|
||||
var HOLD_MS = 350;
|
||||
var holdTimer = null;
|
||||
var listening = false;
|
||||
|
||||
function endHold(send) {
|
||||
if (holdTimer) { clearTimeout(holdTimer); holdTimer = null; }
|
||||
if (!listening) return false;
|
||||
listening = false;
|
||||
if (window.souveraine) window.souveraine.talk(send ? 'end' : 'cancel');
|
||||
return true;
|
||||
}
|
||||
|
||||
canvas.addEventListener('pointerdown', function (e) {
|
||||
if (holdTimer) clearTimeout(holdTimer);
|
||||
holdTimer = setTimeout(function () {
|
||||
holdTimer = null;
|
||||
listening = true;
|
||||
if (window.souveraine) window.souveraine.talk('start');
|
||||
}, HOLD_MS);
|
||||
// So a finger that slides off still delivers its release here.
|
||||
try { canvas.setPointerCapture(e.pointerId); } catch (err) {}
|
||||
});
|
||||
|
||||
// Two quick taps send her away, mirroring the clock's own double tap that
|
||||
// brought her here. Same window as the clock uses (350ms), so the gesture
|
||||
// means one thing on this device rather than two.
|
||||
var DOUBLE_MS = 350;
|
||||
var lastTapAt = -1;
|
||||
|
||||
canvas.addEventListener('pointerup', function () {
|
||||
// A hold that reached the threshold was speech, not a tap, and must not
|
||||
// also count toward a double tap — releasing after speaking would
|
||||
// otherwise be half of a dismissal.
|
||||
if (endHold(true)) { lastTapAt = -1; return; }
|
||||
if (!window.souveraine) return;
|
||||
var now = Date.now();
|
||||
if (lastTapAt > 0 && now - lastTapAt <= DOUBLE_MS) {
|
||||
lastTapAt = -1;
|
||||
window.souveraine.dismiss();
|
||||
return;
|
||||
}
|
||||
lastTapAt = now;
|
||||
// Single taps are hers to answer with a motion.
|
||||
window.souveraine.tapped('body');
|
||||
});
|
||||
|
||||
canvas.addEventListener('pointercancel', function () { endHold(false); });
|
||||
window.addEventListener('blur', function () { endHold(false); });
|
||||
|
||||
// ## Her silhouette is where she takes touches; the rest is the home screen
|
||||
//
|
||||
// A transparent window is still a rectangle, and hers is the full width of
|
||||
// the panel — so without this every tap meant for a widget behind her was
|
||||
// swallowed by empty glass. The compositor cannot work the shape out: only
|
||||
// this page knows which pixels she actually drew.
|
||||
//
|
||||
// Sampled from her own alpha rather than guessed as a box over her body,
|
||||
// because she is a seated figure with gaps that matter — between her arms
|
||||
// and her sides, under the book, either side of her hair — and a bounding
|
||||
// box would hand all of them to her.
|
||||
//
|
||||
// Coarse on purpose. A grid cell is tens of pixels, the mask is the union of
|
||||
// the cells that contain anything, and that costs one small readback instead
|
||||
// of a per-pixel region the compositor would have to intersect on every
|
||||
// contact. Erring outward by half a cell is the right direction: it is
|
||||
// better to take a tap just off her elbow than to drop one on it.
|
||||
var GRID_X = 24, GRID_Y = 36;
|
||||
var shapeCanvas = document.createElement('canvas');
|
||||
shapeCanvas.width = GRID_X;
|
||||
shapeCanvas.height = GRID_Y;
|
||||
var shapeCtx = shapeCanvas.getContext('2d', { willReadFrequently: true });
|
||||
var lastShape = '';
|
||||
// The first few attempts report unconditionally, including failures. An
|
||||
// input region that silently never publishes looks exactly like one that
|
||||
// published correctly — the glass is identical either way — so the quiet
|
||||
// path is the one that needs a voice. Bounded, because after that it is
|
||||
// just noise on every sample.
|
||||
var shapeReports = 0;
|
||||
|
||||
function publishShape() {
|
||||
if (!window.souveraine || !canvas.width || !canvas.height) {
|
||||
if (shapeReports++ < 3)
|
||||
console.log('shape: skipped — souveraine=' + (!!window.souveraine)
|
||||
+ ' canvas=' + canvas.width + 'x' + canvas.height
|
||||
+ ' shape_fn=' + (window.souveraine && typeof window.souveraine.shape));
|
||||
return;
|
||||
}
|
||||
var canvasRect = canvas.getBoundingClientRect();
|
||||
var cw = canvasRect.width / GRID_X, ch = canvasRect.height / GRID_Y;
|
||||
try {
|
||||
// Scaled down by the GPU on the way in, so the readback is 24x36 and
|
||||
// not the full panel. Must happen inside a frame: the WebGL canvas has
|
||||
// no preserveDrawingBuffer, so its pixels are gone after compositing.
|
||||
shapeCtx.clearRect(0, 0, GRID_X, GRID_Y);
|
||||
shapeCtx.drawImage(canvas, 0, 0, GRID_X, GRID_Y);
|
||||
var data = shapeCtx.getImageData(0, 0, GRID_X, GRID_Y).data;
|
||||
} catch (e) {
|
||||
return;
|
||||
}
|
||||
var rects = [];
|
||||
for (var gy = 0; gy < GRID_Y; gy++) {
|
||||
var runStart = -1;
|
||||
for (var gx = 0; gx <= GRID_X; gx++) {
|
||||
var solid = gx < GRID_X && data[(gy * GRID_X + gx) * 4 + 3] > 8;
|
||||
if (solid && runStart < 0) runStart = gx;
|
||||
// Runs merged along the row, so a full-width band is one rectangle
|
||||
// instead of 24 — the region is unioned rect by rect on the other side.
|
||||
if (!solid && runStart >= 0) {
|
||||
rects.push([Math.floor(canvasRect.left + runStart * cw),
|
||||
Math.floor(canvasRect.top + gy * ch),
|
||||
Math.ceil((gx - runStart) * cw), Math.ceil(ch)]);
|
||||
runStart = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (hands.classList.contains('up')) {
|
||||
var hr = hands.getBoundingClientRect();
|
||||
rects.push([Math.floor(hr.left), Math.floor(hr.top),
|
||||
Math.ceil(hr.width), Math.ceil(hr.height)]);
|
||||
}
|
||||
// Nothing drawn yet: say nothing. An empty report means "all of it" to the
|
||||
// host, and publishing that on every frame before the rig loads would make
|
||||
// her briefly swallow the screen each time she is summoned.
|
||||
if (rects.length === 0) {
|
||||
if (shapeReports++ < 3) {
|
||||
var solid = 0;
|
||||
for (var i = 3; i < data.length; i += 4) if (data[i] > 8) solid++;
|
||||
console.log('shape: nothing drawn — ' + solid + ' of ' + (GRID_X * GRID_Y)
|
||||
+ ' cells had alpha; the sample read a blank buffer');
|
||||
}
|
||||
return;
|
||||
}
|
||||
var key = JSON.stringify(rects);
|
||||
if (key === lastShape) return;
|
||||
lastShape = key;
|
||||
// Reported, because the shape is invisible on the glass and wrong is
|
||||
// indistinguishable from right by looking: a single rectangle means the
|
||||
// sampling read a blank buffer and she is swallowing the screen again.
|
||||
if (shapeReports++ < 3) {
|
||||
var lit = 0, rowsLit = 0;
|
||||
for (var gy2 = 0; gy2 < GRID_Y; gy2++) {
|
||||
var any = false;
|
||||
for (var gx2 = 0; gx2 < GRID_X; gx2++)
|
||||
if (data[(gy2 * GRID_X + gx2) * 4 + 3] > 8) { lit++; any = true; }
|
||||
if (any) rowsLit++;
|
||||
}
|
||||
// Cells and rows, not just rectangles: a low rect count can mean either
|
||||
// "she is a compact shape" or "the sample barely saw her", and only the
|
||||
// coverage separates them.
|
||||
console.log('shape: ' + rects.length + ' rects, ' + lit + '/' + (GRID_X * GRID_Y)
|
||||
+ ' cells lit across ' + rowsLit + '/' + GRID_Y + ' rows');
|
||||
}
|
||||
window.souveraine.shape(rects);
|
||||
}
|
||||
|
||||
// Her outline changes when she moves, but slowly and not by much, so this
|
||||
// does not belong in the draw loop. Twice a second is well inside the time
|
||||
// it takes to reach for something behind her, and it costs one 24x36
|
||||
// readback.
|
||||
setInterval(function () { requestAnimationFrame(publishShape); }, 500);
|
||||
if (window.souveraine) window.souveraine.ready();
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
940
assets/face/live2d/css/live2d.css
Normal file
|
|
@ -0,0 +1,940 @@
|
|||
#landlord {
|
||||
user-select: none;
|
||||
position: fixed;
|
||||
left: 5px;
|
||||
bottom: 0;
|
||||
width: 250px;
|
||||
height: 280px;
|
||||
z-index: 10000;
|
||||
font-size: 0;
|
||||
/*transition: all .3s ease-in-out;*/
|
||||
display:none;
|
||||
}
|
||||
#open_live2d{
|
||||
border: 2px solid rgba(75,127,199,0.9);
|
||||
border-radius: 2px;
|
||||
background-color: rgba(74, 59, 114,0.9);
|
||||
padding:2px 10px;
|
||||
color:#fff;
|
||||
height:24px;
|
||||
line-height:24px;
|
||||
font-size:12px;
|
||||
position:fixed;
|
||||
right:5px;
|
||||
bottom:5px;
|
||||
z-index:10000;
|
||||
cursor:pointer;
|
||||
display:none;
|
||||
}
|
||||
#showInfoBtn{
|
||||
display:none;
|
||||
}
|
||||
#live2d {
|
||||
width: 250px;
|
||||
height: 280px;
|
||||
position: relative;
|
||||
z-index:3;
|
||||
}
|
||||
|
||||
.message {
|
||||
opacity: 0;
|
||||
color: #fff;
|
||||
box-sizing: border-box;
|
||||
width: 250px;
|
||||
height: auto;
|
||||
margin: auto;
|
||||
padding: 7px;
|
||||
bottom: 280px;
|
||||
left: 0px;
|
||||
text-align: center;
|
||||
border: 2px solid rgba(75,127,199,0.9);
|
||||
border-radius: 5px;
|
||||
background-color: rgba(74, 59, 114,0.9);
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
text-overflow: ellipsis;
|
||||
text-transform: uppercase;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
/*animation-delay: 5s;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: shake;
|
||||
animation-timing-function: ease-in-out;*/
|
||||
}
|
||||
.live_talk_input_body{
|
||||
position:absolute;
|
||||
bottom:15px;
|
||||
left:0;
|
||||
width:250px;
|
||||
display:none;
|
||||
z-index:4;
|
||||
}
|
||||
.live_talk_input_text_body{
|
||||
width:250px;
|
||||
box-sizing:border-box;
|
||||
height:28px;
|
||||
border: 2px solid rgb(223, 179, 241);
|
||||
border-radius: 5px;
|
||||
background-color: rgba(74, 59, 114,0.9);
|
||||
}
|
||||
.live_talk_input_name_body{
|
||||
width:100px;
|
||||
box-sizing:border-box;
|
||||
height:24px;
|
||||
border: 2px solid rgb(223, 179, 241);
|
||||
border-radius: 5px;
|
||||
background-color: rgba(74, 59, 114,0.9);
|
||||
margin-bottom:3px;
|
||||
}
|
||||
.live_talk_name{
|
||||
background-color:transparent;
|
||||
border:0px;
|
||||
margin:0;
|
||||
width:66px;
|
||||
height:20px;
|
||||
line-height:20px;
|
||||
text-align:center;
|
||||
font-size:12px;
|
||||
color:#fff;
|
||||
outline:none;
|
||||
box-sizing:border-box;
|
||||
padding:0 3px;
|
||||
}
|
||||
.live_talk_talk{
|
||||
background-color:transparent;
|
||||
border:0px;
|
||||
margin:0;
|
||||
width:206px;
|
||||
height:24px;
|
||||
line-height:24px;
|
||||
text-align:left;
|
||||
font-size:12px;
|
||||
color:#fff;
|
||||
outline:none;
|
||||
box-sizing:border-box;
|
||||
padding:0 3px;
|
||||
float:left;
|
||||
}
|
||||
.live_talk_send_btn{
|
||||
background-color:transparent;
|
||||
color:#fff;
|
||||
border:0px;
|
||||
cursor:pointer;
|
||||
padding:0 4px;
|
||||
border-left:1px solid #fff;
|
||||
font-size:12px;
|
||||
float:right;
|
||||
height:18px;
|
||||
line-height:18px;
|
||||
outline:none;
|
||||
margin:3px 0 0 0;
|
||||
}
|
||||
.white_input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
||||
color: #E4E4E4;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.white_input::-moz-placeholder { /* Mozilla Firefox 19+*/
|
||||
color: #E4E4E4;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.white_input:-ms-input-placeholder {
|
||||
color: #E4E4E4;
|
||||
}
|
||||
|
||||
.white_input::-webkit-input-placeholder {
|
||||
color: #E4E4E4;
|
||||
}
|
||||
|
||||
|
||||
.hide-button {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 0;
|
||||
/* bottom: 30px; */
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
/* padding: 4px; */
|
||||
width: 60px;
|
||||
height: 20px;
|
||||
border: 1px solid rgba(255,137,255,.4);
|
||||
border-radius: 12px;
|
||||
background: rgba(255,137,255,.2);
|
||||
box-shadow: 0 3px 15px 2px rgba(255,137,255,.4);
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.hide-button:hover {
|
||||
border: 1px solid #f4a7b9;
|
||||
background: #f4f6f8;
|
||||
}
|
||||
.live_ico_box{
|
||||
width:15px;
|
||||
position:absolute;
|
||||
z-index:5;
|
||||
right:0;
|
||||
top:10px;
|
||||
opacity:0.9;
|
||||
}
|
||||
.live_ico_item{
|
||||
width:15px;
|
||||
height: 20px;
|
||||
cursor:pointer;
|
||||
background-position:center center;
|
||||
background-repeat:no-repeat;
|
||||
background-size:15px;
|
||||
}
|
||||
.live_ico_item.type_talk{
|
||||
background-image:url(../images/talk.png);
|
||||
}
|
||||
.live_ico_item.type_quit{
|
||||
background-image:url(../images/quite.png);
|
||||
}
|
||||
.live_ico_item.type_info{
|
||||
background-image:url(../images/info.png);
|
||||
}
|
||||
.live_ico_item.type_music{
|
||||
background-image:url(../images/music.png);
|
||||
}
|
||||
.live_ico_item.type_youdu{
|
||||
background-image:url(../images/youdu.png);
|
||||
}
|
||||
.live_ico_item.type_music.play{
|
||||
background-image:url(../images/pasue.png);
|
||||
}
|
||||
.live_ico_item.type_youdu.doudong{
|
||||
-webkit-animation-name: shake-little;
|
||||
-ms-animation-name: shake-little;
|
||||
animation-name: shake-little;
|
||||
-webkit-animation-duration: 100ms;
|
||||
-ms-animation-duration: 100ms;
|
||||
animation-duration: 100ms;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
-ms-animation-iteration-count: infinite;
|
||||
animation-iteration-count: infinite;
|
||||
-webkit-animation-timing-function: ease-in-out;
|
||||
-ms-animation-timing-function: ease-in-out;
|
||||
animation-timing-function: ease-in-out;
|
||||
-webkit-animation-delay: 0s;
|
||||
-ms-animation-delay: 0s;
|
||||
animation-delay: 0s;
|
||||
-webkit-animation-play-state: running;
|
||||
-ms-animation-play-state: running;
|
||||
animation-play-state: running
|
||||
}
|
||||
.douqilai,.douqilai *{
|
||||
animation: shake-it .5s reverse infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
|
||||
}
|
||||
.l2d_caihong{
|
||||
animation: rainbow 1.5s infinite;
|
||||
}
|
||||
@media (max-width: 860px) {
|
||||
#landlord {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shake {
|
||||
2% {
|
||||
transform: translate(0.5px, -1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
4% {
|
||||
transform: translate(0.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
6% {
|
||||
transform: translate(1.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
8% {
|
||||
transform: translate(2.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
10% {
|
||||
transform: translate(0.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
12% {
|
||||
transform: translate(1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
14% {
|
||||
transform: translate(0.5px, 0.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
16% {
|
||||
transform: translate(-1.5px, -0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
18% {
|
||||
transform: translate(0.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
20% {
|
||||
transform: translate(2.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
22% {
|
||||
transform: translate(0.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
24% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
26% {
|
||||
transform: translate(1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
28% {
|
||||
transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
30% {
|
||||
transform: translate(1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
32% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
34% {
|
||||
transform: translate(2.5px, 2.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
36% {
|
||||
transform: translate(0.5px, -1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
38% {
|
||||
transform: translate(2.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: translate(-0.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
42% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
44% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
46% {
|
||||
transform: translate(1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
48% {
|
||||
transform: translate(2.5px, -0.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
52% {
|
||||
transform: translate(-0.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
54% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
56% {
|
||||
transform: translate(0.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
58% {
|
||||
transform: translate(2.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
62% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
64% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
66% {
|
||||
transform: translate(0.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
68% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: translate(2.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
72% {
|
||||
transform: translate(-0.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
74% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
76% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
78% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
82% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
84% {
|
||||
transform: translate(-0.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
86% {
|
||||
transform: translate(2.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
88% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
92% {
|
||||
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
94% {
|
||||
transform: translate(0.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
96% {
|
||||
transform: translate(2.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
98% {
|
||||
transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
0%, 100% {
|
||||
transform: translate(0, 0) rotate(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes quan {
|
||||
0% { transform:rotate(0);
|
||||
animation-timing-function:linear; }
|
||||
100% { transform:rotate(360deg); }
|
||||
}
|
||||
@-webkit-keyframes quan {
|
||||
0% { -webkit-transform:rotate(0);
|
||||
-webkit-animation-timing-function:linear; }
|
||||
100% { -webkit-transform:rotate(360deg); }
|
||||
}
|
||||
@-moz-keyframes quan {
|
||||
0% { -moz-transform:rotate(0);
|
||||
-moz-animation-timing-function:linear; }
|
||||
100% { -moz-transform:rotate(360deg); }
|
||||
}
|
||||
@-o-keyframes quan {
|
||||
0% { -o-transform:rotate(0);
|
||||
-o-animation-timing-function:linear; }
|
||||
100% { -o-transform:rotate(360deg); }
|
||||
}
|
||||
@-ms-keyframes quan {
|
||||
0% { -ms-transform:rotate(0);
|
||||
-ms-animation-timing-function:linear; }
|
||||
100% { -ms-transform:rotate(360deg); }
|
||||
}
|
||||
@-webkit-keyframes shake-little {
|
||||
0% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(0deg)
|
||||
}
|
||||
2% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
4% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
6% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
8% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
10% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
12% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
14% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
16% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
18% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
20% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
22% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
24% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
26% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
28% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
30% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
32% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
34% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
36% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
38% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
42% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
44% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
46% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
48% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
50% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
52% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
54% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
56% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
58% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
60% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
62% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
64% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
66% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
68% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
70% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
72% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
74% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
76% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
78% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
80% {
|
||||
-webkit-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
82% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
84% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
86% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
88% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
90% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
92% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
94% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
96% {
|
||||
-webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
98% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
}
|
||||
@-ms-keyframes shake-little {
|
||||
0% {
|
||||
-ms-transform: translate(0px, 0px) rotate(0deg)
|
||||
}
|
||||
2% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
4% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
6% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
8% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
10% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
12% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
14% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
16% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
18% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
20% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
22% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
24% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
26% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
28% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
30% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
32% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
34% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
36% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
38% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
40% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
42% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
44% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
46% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
48% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
50% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
52% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
54% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
56% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
58% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
60% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
62% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
64% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
66% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
68% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
70% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
72% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
74% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
76% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
78% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
80% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
82% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
84% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
86% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
88% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
90% {
|
||||
-ms-transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
92% {
|
||||
-ms-transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
94% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
96% {
|
||||
-ms-transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
98% {
|
||||
-ms-transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
}
|
||||
@keyframes shake-little {
|
||||
0% {
|
||||
transform: translate(0px, 0px) rotate(0deg)
|
||||
}
|
||||
2% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
4% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
6% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
8% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
10% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
12% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
14% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
16% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
18% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
20% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
22% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
24% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
26% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
28% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
30% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
32% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
34% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
36% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
38% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
40% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
42% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
44% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
46% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
48% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
50% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
52% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
54% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
56% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
58% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
60% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
62% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
64% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
66% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
68% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
70% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
72% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
74% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
76% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
78% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
80% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
82% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
84% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
86% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
88% {
|
||||
transform: translate(0px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
90% {
|
||||
transform: translate(-1px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
92% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
94% {
|
||||
transform: translate(-1px, 0px) rotate(-0.5deg)
|
||||
}
|
||||
96% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
98% {
|
||||
transform: translate(0px, -1px) rotate(-0.5deg)
|
||||
}
|
||||
}
|
||||
@keyframes shake-it{
|
||||
0%{
|
||||
text-shadow: 0 0 rgba(0, 255, 255, .5), 0 0 rgba(255, 0, 0, .5);
|
||||
}
|
||||
25%{
|
||||
text-shadow: -2px 0 rgba(0, 255, 255, .5), 2px 0 rgba(255, 0, 0, .5);
|
||||
}
|
||||
50%{
|
||||
text-shadow: -5px 0 rgba(0, 255, 255, .5), 3px 0 rgba(255, 0, 0, .5);
|
||||
}
|
||||
100%{
|
||||
text-shadow: 3px 0 rgba(0, 255, 255, .5), 5px 0 rgba(255, 0, 0, .5);
|
||||
}
|
||||
}
|
||||
@keyframes rainbow {
|
||||
100% { filter: hue-rotate(360deg); }
|
||||
}
|
||||
BIN
assets/face/live2d/images/info.png
Normal file
|
After Width: | Height: | Size: 545 B |
BIN
assets/face/live2d/images/music.png
Normal file
|
After Width: | Height: | Size: 549 B |
BIN
assets/face/live2d/images/pasue.png
Normal file
|
After Width: | Height: | Size: 472 B |
BIN
assets/face/live2d/images/quite.png
Normal file
|
After Width: | Height: | Size: 682 B |
BIN
assets/face/live2d/images/talk.png
Normal file
|
After Width: | Height: | Size: 411 B |
BIN
assets/face/live2d/images/youdu.png
Normal file
|
After Width: | Height: | Size: 617 B |
1
assets/face/live2d/js/live2d.js
Normal file
503
assets/face/live2d/js/message.js
Normal file
|
|
@ -0,0 +1,503 @@
|
|||
var userAgent = window.navigator.userAgent.toLowerCase();
|
||||
console.log(userAgent);
|
||||
var norunAI = ["android", "iphone", "ipod", "ipad", "windows phone"];
|
||||
var norunFlag = false;
|
||||
|
||||
|
||||
for (var i = 0; i < norunAI.length; i++) {
|
||||
if (userAgent.indexOf(norunAI[i]) > -1) {
|
||||
norunFlag = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!window.WebGLRenderingContext) {
|
||||
norunFlag = true;
|
||||
}
|
||||
|
||||
if (!norunFlag) {
|
||||
var hitFlag = false;
|
||||
var AIFadeFlag = false;
|
||||
var liveTlakTimer = null;
|
||||
var sleepTimer_ = null;
|
||||
var AITalkFlag = false;
|
||||
var talkNum = 0;
|
||||
// 暴露到全局,供 pjax.js 在页面切换后重新调用
|
||||
window._live2d = { initTips: null, showMessage: null, showHitokoto: null };
|
||||
(function () {
|
||||
function renderTip(template, context) {
|
||||
var tokenReg = /(\\)?\{([^\{\}\\]+)(\\)?\}/g;
|
||||
return template.replace(tokenReg, function (word, slash1, token, slash2) {
|
||||
if (slash1 || slash2) {
|
||||
return word.replace(/\\/g, '');
|
||||
}
|
||||
var variables = token.replace(/\s/g, '').split('.');
|
||||
var currentObject = context;
|
||||
var i, length, variable;
|
||||
for (i = 0, length = variables.length; i < length; ++i) {
|
||||
variable = currentObject[variables[i]];
|
||||
if (variable === undefined || variable === null) return '';
|
||||
currentObject = variable;
|
||||
}
|
||||
return String(currentObject);
|
||||
});
|
||||
}
|
||||
|
||||
String.prototype.renderTip = function (context) {
|
||||
return renderTip(this, context);
|
||||
};
|
||||
|
||||
var re = /x/;
|
||||
console.log(re);
|
||||
re.toString = function () {
|
||||
showMessage('哈哈,你打开了控制台,是想要看看我的秘密吗?', 5000);
|
||||
return '';
|
||||
};
|
||||
|
||||
$(document).on('copy', function () {
|
||||
showMessage('你都复制了些什么呀,转载要记得加上出处哦~~', 5000);
|
||||
});
|
||||
|
||||
// 缓存 message.json 数据,供 PJAX 重绑定使用
|
||||
var tipsData = null;
|
||||
|
||||
function initTips() {
|
||||
$.ajax({
|
||||
cache: true,
|
||||
url: message_Path + 'message.json',
|
||||
dataType: "json",
|
||||
success: function (result) {
|
||||
tipsData = result;
|
||||
// 解绑旧事件(用命名空间避免影响其他绑定)
|
||||
$.each(result.mouseover, function (index, tips) {
|
||||
$(tips.selector).off('mouseover._live2d_tips mouseout._live2d_tips');
|
||||
$(tips.selector).on('mouseover._live2d_tips', function () {
|
||||
var text = tips.text;
|
||||
if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1];
|
||||
text = text.renderTip({ text: $(this).text() });
|
||||
showMessage(text, 3000);
|
||||
talkValTimer();
|
||||
clearInterval(liveTlakTimer);
|
||||
liveTlakTimer = null;
|
||||
});
|
||||
$(tips.selector).on('mouseout._live2d_tips', function () {
|
||||
showHitokoto();
|
||||
if (liveTlakTimer == null) {
|
||||
liveTlakTimer = window.setInterval(function () {
|
||||
showHitokoto();
|
||||
}, 15000);
|
||||
};
|
||||
});
|
||||
});
|
||||
$.each(result.click, function (index, tips) {
|
||||
$(tips.selector).off('click._live2d_tips');
|
||||
$(tips.selector).on('click._live2d_tips', function () {
|
||||
if (hitFlag) {
|
||||
return false
|
||||
}
|
||||
hitFlag = true;
|
||||
setTimeout(function () {
|
||||
hitFlag = false;
|
||||
}, 8000);
|
||||
var text = tips.text;
|
||||
if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1];
|
||||
text = text.renderTip({ text: $(this).text() });
|
||||
showMessage(text, 3000);
|
||||
});
|
||||
clearInterval(liveTlakTimer);
|
||||
liveTlakTimer = null;
|
||||
if (liveTlakTimer == null) {
|
||||
liveTlakTimer = window.setInterval(function () {
|
||||
showHitokoto();
|
||||
}, 15000);
|
||||
};
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
window._live2d.initTips = initTips;
|
||||
initTips();
|
||||
|
||||
var text;
|
||||
if (document.referrer !== '' && document.referrer.split('/')[2] !== window.location.host) {
|
||||
var referrer = document.createElement('a');
|
||||
referrer.href = document.referrer;
|
||||
var domain = referrer.hostname.split('.')[1];
|
||||
if (domain == 'baidu' || domain == 'so' || domain == 'google') {
|
||||
var source = domain == 'baidu' ? '百度搜索' : domain == 'so' ? '360搜索' : '谷歌搜索';
|
||||
text = '嗨! 来自 ' + source + ' 的朋友!<br>欢迎访问<span style="color:#0099cc;">「 ' + document.title.split(' | ')[0] + ' 」</span>';
|
||||
} else {
|
||||
text = '嗨!来自 <span style="color:#0099cc;">' + referrer.hostname + '</span> 的朋友!';
|
||||
}
|
||||
} else {
|
||||
text = getWelcomeText();
|
||||
}
|
||||
showMessage(text, 12000);
|
||||
})();
|
||||
|
||||
liveTlakTimer = setInterval(function () {
|
||||
showHitokoto();
|
||||
}, 15000);
|
||||
|
||||
function showHitokoto() {
|
||||
if (sessionStorage.getItem("Sleepy") !== "1") {
|
||||
if (!AITalkFlag) {
|
||||
$.getJSON('https://hitokoto.mayx.eu.org/', function (result) {
|
||||
talkValTimer();
|
||||
showMessage(result.hitokoto, 0);
|
||||
});
|
||||
}
|
||||
} else {
|
||||
hideMessage(0);
|
||||
if (sleepTimer_ == null) {
|
||||
sleepTimer_ = setInterval(function () {
|
||||
checkSleep();
|
||||
}, 200);
|
||||
}
|
||||
console.log(sleepTimer_);
|
||||
}
|
||||
}
|
||||
window._live2d.showHitokoto = showHitokoto;
|
||||
|
||||
function checkSleep() {
|
||||
var sleepStatu = sessionStorage.getItem("Sleepy");
|
||||
if (sleepStatu !== '1') {
|
||||
talkValTimer();
|
||||
showMessage('你回来啦~', 0);
|
||||
clearInterval(sleepTimer_);
|
||||
sleepTimer_ = null;
|
||||
}
|
||||
}
|
||||
|
||||
function showMessage(text, timeout) {
|
||||
if (Array.isArray(text)) text = text[Math.floor(Math.random() * text.length + 1) - 1];
|
||||
//console.log('showMessage', text);
|
||||
$('.message').stop();
|
||||
if (typeof EventSource !== 'undefined' && text instanceof EventSource) {
|
||||
var outputContainer = $('.message')[0];
|
||||
var eventFlag = false;
|
||||
text.onmessage = function (event) {
|
||||
if (event.data == "[DONE]") {
|
||||
text.close();
|
||||
return;
|
||||
} else {
|
||||
if (!eventFlag) {
|
||||
talkValTimer();
|
||||
outputContainer.textContent = "";
|
||||
eventFlag = true;
|
||||
}
|
||||
var data = JSON.parse(event.data);
|
||||
if (data.response) {
|
||||
outputContainer.textContent += data.response;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$('.message').html(text);
|
||||
}
|
||||
$('.message').fadeTo(200, 1);
|
||||
//if (timeout === null) timeout = 5000;
|
||||
//hideMessage(timeout);
|
||||
}
|
||||
window._live2d.showMessage = showMessage;
|
||||
function talkValTimer() {
|
||||
$('#live_talk').val('1');
|
||||
}
|
||||
|
||||
function hideMessage(timeout) {
|
||||
//$('.message').stop().css('opacity',1);
|
||||
if (timeout === null) timeout = 5000;
|
||||
$('.message').delay(timeout).fadeTo(200, 0);
|
||||
}
|
||||
|
||||
function initLive2d() {
|
||||
$("#landlord").mouseenter(function () {
|
||||
$(".live_ico_box").fadeIn();
|
||||
});
|
||||
$("#landlord").mouseleave(function () {
|
||||
$(".live_ico_box").fadeOut();
|
||||
});
|
||||
$('#hideButton').on('click', function () {
|
||||
if (AIFadeFlag) {
|
||||
return false;
|
||||
} else {
|
||||
AIFadeFlag = true;
|
||||
localStorage.setItem("live2dhidden", "0");
|
||||
$('#landlord').fadeOut(200);
|
||||
$('#open_live2d').delay(200).fadeIn(200);
|
||||
setTimeout(function () {
|
||||
AIFadeFlag = false;
|
||||
}, 300);
|
||||
}
|
||||
});
|
||||
$('#open_live2d').on('click', function () {
|
||||
if (AIFadeFlag) {
|
||||
return false;
|
||||
} else {
|
||||
AIFadeFlag = true;
|
||||
localStorage.setItem("live2dhidden", "1");
|
||||
$('#open_live2d').fadeOut(200);
|
||||
$('#landlord').delay(200).fadeIn(200);
|
||||
setTimeout(function () {
|
||||
AIFadeFlag = false;
|
||||
}, 300);
|
||||
}
|
||||
});
|
||||
$('#youduButton').on('click', function () {
|
||||
if ($('#youduButton').hasClass('doudong')) {
|
||||
var typeIs = $('#youduButton').attr('data-type');
|
||||
$('#youduButton').removeClass('doudong');
|
||||
$('body').removeClass(typeIs);
|
||||
$('#youduButton').attr('data-type', '');
|
||||
} else {
|
||||
var duType = $('#duType').val();
|
||||
var duArr = duType.split(",");
|
||||
var dataType = duArr[Math.floor(Math.random() * duArr.length)];
|
||||
|
||||
$('#youduButton').addClass('doudong');
|
||||
$('#youduButton').attr('data-type', dataType);
|
||||
$('body').addClass(dataType);
|
||||
}
|
||||
});
|
||||
if (talkAPI !== "" && typeof EventSource !== 'undefined') {
|
||||
$('#showInfoBtn').on('click', function () {
|
||||
var live_statu = $('#live_statu_val').val();
|
||||
if (live_statu == "0") {
|
||||
return
|
||||
} else {
|
||||
$('#live_statu_val').val("0");
|
||||
$('.live_talk_input_body').fadeOut(500);
|
||||
AITalkFlag = false;
|
||||
showHitokoto();
|
||||
$('#showTalkBtn').show();
|
||||
$('#showInfoBtn').hide();
|
||||
}
|
||||
});
|
||||
$('#showTalkBtn').on('click', function () {
|
||||
var live_statu = $('#live_statu_val').val();
|
||||
if (live_statu == "1") {
|
||||
return
|
||||
} else {
|
||||
$('#live_statu_val').val("1");
|
||||
$('.live_talk_input_body').fadeIn(500);
|
||||
AITalkFlag = true;
|
||||
$('#showTalkBtn').hide();
|
||||
$('#showInfoBtn').show();
|
||||
|
||||
}
|
||||
});
|
||||
$('#live_talk_input_form').on('submit', function (e) {
|
||||
e.preventDefault();
|
||||
var info_ = $('#AIuserText').val();
|
||||
// var userid_ = $('#AIuserName').val();
|
||||
let add_id = "";
|
||||
if ($('#load_this').prop("checked")) {
|
||||
add_id = "&id=" + encodeURIComponent($('#post_id').val());
|
||||
}
|
||||
if (info_ == "") {
|
||||
showMessage('写点什么吧!', 0);
|
||||
return;
|
||||
}
|
||||
showMessage('思考中~', 0);
|
||||
showMessage(new EventSource(talkAPI + "?info=" + encodeURIComponent(info_) + add_id));
|
||||
});
|
||||
} else {
|
||||
$('#showInfoBtn').hide();
|
||||
$('#showTalkBtn').hide();
|
||||
|
||||
}
|
||||
// //获取用户名
|
||||
// var live2dUser = sessionStorage.getItem("live2duser");
|
||||
// if(live2dUser !== null){
|
||||
// $('#AIuserName').val(live2dUser);
|
||||
// }
|
||||
//获取位置
|
||||
var landL = sessionStorage.getItem("historywidth");
|
||||
var landB = sessionStorage.getItem("historyheight");
|
||||
if (landL == null || landB == null) {
|
||||
landL = '5px'
|
||||
landB = '0px'
|
||||
}
|
||||
$('#landlord').css('left', landL + 'px');
|
||||
$('#landlord').css('bottom', landB + 'px');
|
||||
//移动
|
||||
function getEvent() {
|
||||
return window.event || arguments.callee.caller.arguments[0];
|
||||
}
|
||||
var smcc = document.getElementById("landlord");
|
||||
var moveX = 0;
|
||||
var moveY = 0;
|
||||
var moveBottom = 0;
|
||||
var moveLeft = 0;
|
||||
var moveable = false;
|
||||
var docMouseMoveEvent = document.onmousemove;
|
||||
var docMouseUpEvent = document.onmouseup;
|
||||
smcc.onmousedown = function () {
|
||||
var ent = getEvent();
|
||||
moveable = true;
|
||||
moveX = ent.clientX;
|
||||
moveY = ent.clientY;
|
||||
var obj = smcc;
|
||||
moveBottom = parseInt(obj.style.bottom);
|
||||
moveLeft = parseInt(obj.style.left);
|
||||
if (isFirefox = navigator.userAgent.indexOf("Firefox") > 0) {
|
||||
window.getSelection().removeAllRanges();
|
||||
}
|
||||
document.onmousemove = function () {
|
||||
if (moveable) {
|
||||
var ent = getEvent();
|
||||
var x = moveLeft + ent.clientX - moveX;
|
||||
var y = moveBottom + (moveY - ent.clientY);
|
||||
obj.style.left = x + "px";
|
||||
obj.style.bottom = y + "px";
|
||||
}
|
||||
};
|
||||
document.onmouseup = function () {
|
||||
if (moveable) {
|
||||
var historywidth = obj.style.left;
|
||||
var historyheight = obj.style.bottom;
|
||||
historywidth = historywidth.replace('px', '');
|
||||
historyheight = historyheight.replace('px', '');
|
||||
sessionStorage.setItem("historywidth", historywidth);
|
||||
sessionStorage.setItem("historyheight", historyheight);
|
||||
document.onmousemove = docMouseMoveEvent;
|
||||
document.onmouseup = docMouseUpEvent;
|
||||
moveable = false;
|
||||
moveX = 0;
|
||||
moveY = 0;
|
||||
moveBottom = 0;
|
||||
moveLeft = 0;
|
||||
}
|
||||
};
|
||||
};
|
||||
//获取音乐信息初始化
|
||||
var $bgm = $('#live2d_bgm');
|
||||
|
||||
// 音乐按钮点击事件(幂等,使用命名空间避免重复绑定)
|
||||
$('#musicButton').off('click._bgm').on('click._bgm', function () {
|
||||
if ($('#musicButton').hasClass('play')) {
|
||||
$bgm[0].pause();
|
||||
$('#musicButton').removeClass('play');
|
||||
sessionStorage.setItem("live2dBGM_IsPlay", '1');
|
||||
} else {
|
||||
$bgm[0].play();
|
||||
$('#musicButton').addClass('play');
|
||||
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
||||
}
|
||||
});
|
||||
|
||||
// BGM 事件监听(仅绑定一次,使用标志位避免重复)
|
||||
if (!window._live2d._bgmEventsBound) {
|
||||
$bgm[0].addEventListener("timeupdate", function () {
|
||||
sessionStorage.setItem("live2dBGM_PlayTime", $bgm[0].currentTime);
|
||||
});
|
||||
$bgm[0].addEventListener("ended", function () {
|
||||
var listNow = parseInt($bgm.attr('data-bgm'));
|
||||
listNow++;
|
||||
var inputs = $('input[name=live2dBGM]');
|
||||
if (inputs.length === 0) return;
|
||||
if (listNow > inputs.length - 1) {
|
||||
listNow = 0;
|
||||
}
|
||||
var listNewSrc = inputs.eq(listNow).val();
|
||||
if (!listNewSrc) return;
|
||||
sessionStorage.setItem("live2dBGM_Num", listNow);
|
||||
$bgm.attr('src', listNewSrc);
|
||||
$bgm[0].play();
|
||||
$bgm.attr('data-bgm', listNow);
|
||||
});
|
||||
$bgm[0].addEventListener("error", function () {
|
||||
$bgm[0].pause();
|
||||
$('#musicButton').removeClass('play');
|
||||
showMessage('音乐似乎加载不出来了呢!', 0);
|
||||
});
|
||||
window.onbeforeunload = function () {
|
||||
sessionStorage.setItem("live2dBGM_WindowClose", '0');
|
||||
if ($('#musicButton').hasClass('play')) {
|
||||
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
||||
}
|
||||
};
|
||||
window._live2d._bgmEventsBound = true;
|
||||
}
|
||||
|
||||
// 初始化 BGM(根据当前页面是否有 BGM 输入)
|
||||
if (typeof window._live2d.initBGM === 'function') {
|
||||
window._live2d.initBGM();
|
||||
}
|
||||
}
|
||||
|
||||
// 暴露 BGM 初始化函数,供 PJAX 重初始化时调用
|
||||
window._live2d.initBGM = function() {
|
||||
var bgmListInfo = $('input[name=live2dBGM]');
|
||||
var $bgm = $('#live2d_bgm');
|
||||
if (bgmListInfo.length === 0) {
|
||||
$('#musicButton').hide();
|
||||
if ($bgm.length) $bgm[0].pause();
|
||||
return;
|
||||
}
|
||||
var bgmPlayNow = parseInt($bgm.attr('data-bgm')) || 0;
|
||||
var bgmPlayTime = 0;
|
||||
var live2dBGM_Num = sessionStorage.getItem("live2dBGM_Num");
|
||||
var live2dBGM_PlayTime = sessionStorage.getItem("live2dBGM_PlayTime");
|
||||
if (live2dBGM_Num) {
|
||||
if (parseInt(live2dBGM_Num) <= bgmListInfo.length - 1) {
|
||||
bgmPlayNow = parseInt(live2dBGM_Num);
|
||||
}
|
||||
}
|
||||
if (live2dBGM_PlayTime) {
|
||||
bgmPlayTime = parseFloat(live2dBGM_PlayTime);
|
||||
}
|
||||
var newSrc = bgmListInfo.eq(bgmPlayNow).val();
|
||||
$bgm.attr('data-bgm', bgmPlayNow);
|
||||
if ($bgm.attr('src') !== newSrc) {
|
||||
$bgm[0].pause();
|
||||
$bgm.attr('src', newSrc);
|
||||
$bgm[0].currentTime = bgmPlayTime;
|
||||
}
|
||||
$bgm[0].volume = 0.5;
|
||||
var live2dBGM_IsPlay = sessionStorage.getItem("live2dBGM_IsPlay");
|
||||
var live2dBGM_WindowClose = sessionStorage.getItem("live2dBGM_WindowClose");
|
||||
if (live2dBGM_IsPlay == '0' && live2dBGM_WindowClose == '0') {
|
||||
$bgm[0].play();
|
||||
$('#musicButton').addClass('play');
|
||||
}
|
||||
sessionStorage.setItem("live2dBGM_WindowClose", '1');
|
||||
$('#musicButton').show();
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
var AIimgSrc = [
|
||||
message_Path + "model/histoire/histoire.1024/texture_00.png",
|
||||
message_Path + "model/histoire/histoire.1024/texture_01.png",
|
||||
message_Path + "model/histoire/histoire.1024/texture_02.png",
|
||||
message_Path + "model/histoire/histoire.1024/texture_03.png"
|
||||
]
|
||||
var images = [];
|
||||
var imgLength = AIimgSrc.length;
|
||||
var loadingNum = 0;
|
||||
for (var i = 0; i < imgLength; i++) {
|
||||
images[i] = new Image();
|
||||
images[i].src = AIimgSrc[i];
|
||||
images[i].onload = function () {
|
||||
loadingNum++;
|
||||
if (loadingNum === imgLength) {
|
||||
var live2dhidden = localStorage.getItem("live2dhidden");
|
||||
if (live2dhidden === "0") {
|
||||
setTimeout(function () {
|
||||
$('#open_live2d').fadeIn(200);
|
||||
}, 1300);
|
||||
} else {
|
||||
setTimeout(function () {
|
||||
$('#landlord').fadeIn(200);
|
||||
}, 1300);
|
||||
}
|
||||
setTimeout(function () {
|
||||
loadlive2d("live2d", message_Path + "model/histoire/model.json");
|
||||
}, 1000);
|
||||
initLive2d();
|
||||
images = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
42
assets/face/live2d/message.json
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"mouseover": [
|
||||
{
|
||||
"selector": "#showInfoBtn",
|
||||
"text": ["不和我聊了吗?"]
|
||||
},
|
||||
{
|
||||
"selector": "#showTalkBtn",
|
||||
"text": ["要和我聊天吗?"]
|
||||
},
|
||||
{
|
||||
"selector": "#hideButton",
|
||||
"text": ["隐藏伊斯特瓦尔,希望隐藏后我们还能再见面!"]
|
||||
},
|
||||
{
|
||||
"selector": "#musicButton",
|
||||
"text": ["给页面加点音乐吗?"]
|
||||
},
|
||||
{
|
||||
"selector": "#youduButton",
|
||||
"text": ["按钮有毒,癫痫患者不要开启!!!<br>点一下开启,再点一下可以关闭。"]
|
||||
},
|
||||
{
|
||||
"selector": ".post-link",
|
||||
"text": ["要看看 {text} 么?"]
|
||||
},
|
||||
{
|
||||
"selector": "#search-input",
|
||||
"text": ["在找什么东西呢,需要帮忙吗?"]
|
||||
},
|
||||
{
|
||||
"selector": "#search-input-all",
|
||||
"text": ["在找什么东西呢,需要帮忙吗?"]
|
||||
}
|
||||
],
|
||||
"click": [
|
||||
{
|
||||
"selector": "#landlord #live2d",
|
||||
"text": ["不要动手动脚的!快把手拿开~~", "真…真的是不知羞耻!","Hentai!", "再摸的话我可要报警了!", "110吗,这里有个变态!"]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
assets/face/live2d/model/histoire/histoire.1024/texture_00.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
assets/face/live2d/model/histoire/histoire.1024/texture_01.png
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
assets/face/live2d/model/histoire/histoire.1024/texture_02.png
Normal file
|
After Width: | Height: | Size: 123 KiB |
BIN
assets/face/live2d/model/histoire/histoire.1024/texture_03.png
Normal file
|
After Width: | Height: | Size: 128 KiB |
BIN
assets/face/live2d/model/histoire/ico_histoire.png
Normal file
|
After Width: | Height: | Size: 252 KiB |
59
assets/face/live2d/model/histoire/model.json
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"version":"1.0.0",
|
||||
"model":"model.moc",
|
||||
"textures":[
|
||||
"histoire.1024/texture_00.png",
|
||||
"histoire.1024/texture_01.png",
|
||||
"histoire.1024/texture_02.png",
|
||||
"histoire.1024/texture_03.png"
|
||||
],
|
||||
"layout":{
|
||||
"center_x":0.0,
|
||||
"center_y":-0.05,
|
||||
"width":2.0
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-1, 1],
|
||||
"head_y":[1, -1],
|
||||
"body_x":[-1, -1],
|
||||
"body_y":[1, -1]
|
||||
},
|
||||
"motions":{
|
||||
"idle":[
|
||||
{"file":"motions/idle/NOZOMU_M01.mtn"},
|
||||
{"file":"motions/idle/NOZOMU_M02.mtn"}
|
||||
],
|
||||
"sleepy":[
|
||||
{"file":"motions/idle/NOZOMU_M04.mtn"}
|
||||
],
|
||||
"flick_head":[
|
||||
{"file":"motions/tap/DK_NOZOMU_0011.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_14.mtn"},
|
||||
{"file":"motions/tap/m_06.mtn"}
|
||||
],
|
||||
"tap_body":[
|
||||
{"file":"motions/tap/DK_NOZOMU_0011.mtn"},
|
||||
{"file":"motions/tap/m_13.mtn"}
|
||||
|
||||
],
|
||||
"talk":[
|
||||
{"file":"motions/tap/DK_NOZOMU_0041.mtn"},
|
||||
{"file":"motions/tap/DK_NOZOMU_0061.mtn"},
|
||||
{"file":"motions/tap/DK_NOZOMU_0067.mtn"}
|
||||
],
|
||||
"rest":[
|
||||
{"file":"motions/tap/tsumiki_m_01.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_09.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_13.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_19.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_21.mtn"}
|
||||
],
|
||||
"":[
|
||||
{"file":"motions/tap/tsumiki_m_01.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_09.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_13.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_19.mtn"},
|
||||
{"file":"motions/tap/tsumiki_m_21.mtn"}
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
assets/face/live2d/model/histoire/model.moc
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.11,0.24,0.42,0.63,0.88,1.17,1.48,1.81,2.17,2.54,2.92,3.31,3.69,4.08,4.46,4.83,5.19,5.52,5.83,6.12,6.37,6.58,6.76,6.89,6.97,7,6.79,6.24,5.45,4.46,3.37,2.22,1.07,-0.06,-1.11,-2.06,-2.84,-3.46,-3.86,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.984,-3.94,-3.86,-3.76,-3.64,-3.5,-3.33,-3.16,-2.97,-2.77,-2.56,-2.35,-2.13,-1.92,-1.71,-1.5,-1.29,-1.09,-0.91,-0.73,-0.57,-0.43,-0.31,-0.2,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.03,0.07,0.15,0.26,0.41,0.61,0.85,1.16,1.52,1.94,2.42,2.97,3.58,4.26,5,6.3,7.95,9.74,11.63,13.46,15.19,16.78,18.08,19.11,19.76,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19.95,19.82,19.61,19.32,18.97,18.55,18.08,17.55,16.97,16.37,15.71,15.02,14.31,13.58,12.82,12.05,11.27,10.5,9.71,8.92,8.15,7.39,6.65,5.92,5.22,4.54,3.89,3.28,2.71,2.19,1.71,1.27,0.9,0.59,0.34,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.08,-0.31,-0.69,-1.18,-1.79,-2.48,-3.28,-4.12,-5.02,-5.96,-6.9,-7.88,-8.84,-9.79,-10.72,-11.61,-12.43,-13.19,-13.89,-14.5,-15.02,-15.44,-15.75,-15.94,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-15.94,-15.75,-15.45,-15.05,-14.55,-13.98,-13.33,-12.62,-11.86,-11.07,-10.22,-9.37,-8.51,-7.64,-6.78,-5.94,-5.11,-4.33,-3.58,-2.88,-2.24,-1.67,-1.16,-0.73,-0.39,-0.14,0.01,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06,0.06
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.16,0.34,0.6,0.91,1.26,1.67,2.11,2.59,3.1,3.62,4.17,4.72,5.28,5.83,6.38,6.9,7.41,7.89,8.33,8.74,9.09,9.4,9.66,9.84,9.96,10,9.5,8.21,6.33,4,1.41,-1.29,-4.03,-6.69,-9.17,-11.41,-13.27,-14.73,-15.67,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-15.94,-15.75,-15.45,-15.05,-14.56,-13.99,-13.34,-12.64,-11.88,-11.09,-10.25,-9.4,-8.54,-7.67,-6.82,-5.98,-5.15,-4.37,-3.63,-2.93,-2.29,-1.73,-1.22,-0.79,-0.46,-0.21,-0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.02,-0.08,-0.18,-0.32,-0.5,-0.73,-0.99,-1.29,-1.63,-2.01,-2.43,-2.88,-3.37,-3.88,-4.43,-5,-5.75,-6.4,-6.96,-7.45,-7.86,-8.21,-8.5,-8.71,-8.87,-8.97,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-8.98,-8.92,-8.82,-8.7,-8.54,-8.35,-8.14,-7.9,-7.64,-7.36,-7.07,-6.76,-6.44,-6.11,-5.77,-5.42,-5.07,-4.72,-4.37,-4.01,-3.67,-3.33,-2.99,-2.66,-2.35,-2.04,-1.75,-1.48,-1.22,-0.98,-0.77,-0.57,-0.41,-0.26,-0.15,-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,0,0,-0.03,-0.12,-0.26,-0.44,-0.67,-0.93,-1.23,-1.55,-1.88,-2.23,-2.59,-2.96,-3.32,-3.67,-4.02,-4.35,-4.66,-4.95,-5.21,-5.44,-5.63,-5.79,-5.9,-5.98,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.98,-5.91,-5.79,-5.65,-5.46,-5.25,-5.01,-4.74,-4.46,-4.17,-3.85,-3.54,-3.22,-2.89,-2.57,-2.26,-1.95,-1.66,-1.38,-1.12,-0.88,-0.67,-0.49,-0.33,-0.2,-0.11,-0.05,-0.029,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03
|
||||
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.63,1.35,2.28,3.38,4.58,5.85,7.15,8.42,9.62,10.72,11.65,12.37,12.84,13,12.87,12.5,11.91,11.13,10.23,9.17,8.03,6.84,5.6,4.35,3.16,2,0.81,-0.18,-1,-1.69,-2.26,-2.71,-3.08,-3.37,-3.59,-3.76,-3.87,-3.95,-3.99,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.984,-3.94,-3.86,-3.76,-3.64,-3.5,-3.33,-3.16,-2.97,-2.77,-2.56,-2.35,-2.13,-1.92,-1.71,-1.5,-1.29,-1.09,-0.91,-0.73,-0.57,-0.43,-0.31,-0.2,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,1.58,3.11,4.9,6.75,8.59,10.32,11.78,12.96,13.72,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13.97,13.88,13.73,13.53,13.28,12.99,12.66,12.28,11.88,11.46,11,10.51,10.02,9.5,8.98,8.44,7.89,7.35,6.79,6.24,5.7,5.17,4.65,4.14,3.65,3.18,2.72,2.3,1.9,1.53,1.19,0.89,0.63,0.41,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.16,0.56,1.11,1.75,2.41,3.07,3.69,4.21,4.63,4.9,5,4.48,3.14,1.19,-1.23,-3.92,-6.72,-9.57,-12.33,-14.91,-17.24,-19.16,-20.68,-21.66,-22,-21.93,-21.75,-21.53,-21.32,-21.15,-21.04,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-21,-20.92,-20.67,-20.28,-19.75,-19.1,-18.35,-17.5,-16.57,-15.58,-14.54,-13.43,-12.31,-11.18,-10.04,-8.92,-7.82,-6.72,-5.7,-4.72,-3.81,-2.96,-2.22,-1.55,-0.99,-0.55,-0.22,-0.01,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05
|
||||
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,0.74,0.26,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.27,0,0.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,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.74,0.26,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,0.74,0.26,0,0,0,0.73,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.74,0.26,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.27,0,0.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.26,0.74,1,1,1,1,1,1,1,1,1,1,1,1,1,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.74,0.26,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,0.74,0.26,0,0,0,0.73,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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_FORM=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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.001,-0.005,-0.011,-0.019,-0.029,-0.04,-0.053,-0.068,-0.083,-0.099,-0.116,-0.133,-0.151,-0.169,-0.187,-0.204,-0.221,-0.237,-0.252,-0.267,-0.28,-0.291,-0.301,-0.309,-0.315,-0.319,-0.32,-0.309,-0.28,-0.23,-0.18,-0.13,-0.08,-0.03,0,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.009,0.01,0.008,0.01,0.007,0.01,0.006,0.01,0.005,0,0.004,0,0.003,0,0.002,0,0,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.002,-0.004,-0.007,-0.012,-0.018,-0.026,-0.036,-0.048,-0.062,-0.078,-0.096,-0.12,-0.14,-0.17,-0.2,-0.23,-0.28,-0.34,-0.4,-0.46,-0.52,-0.58,-0.62,-0.65,-0.673,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.68,-0.678,-0.674,-0.667,-0.657,-0.645,-0.631,-0.615,-0.597,-0.577,-0.56,-0.53,-0.51,-0.49,-0.46,-0.44,-0.41,-0.38,-0.36,-0.33,-0.3,-0.28,-0.25,-0.23,-0.2,-0.18,-0.15,-0.13,-0.11,-0.092,-0.074,-0.058,-0.043,-0.031,-0.02,-0.012,-0.005,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.006,0.011,0.017,0.023,0.031,0.039,0.047,0.057,0.067,0.077,0.087,0.098,0.108,0.119,0.13,0.14,0.15,0.16,0.17,0.179,0.188,0.196,0.203,0.21,0.216,0.221,0.225,0.228,0.229,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.23,0.226,0.222,0.216,0.209,0.201,0.191,0.181,0.17,0.159,0.146,0.134,0.122,0.109,0.097,0.085,0.073,0.061,0.05,0.04,0.031,0.023,0.016,0.009,0.004,0.001,-0.001,-0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_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.002,0.003,0.005,0.007,0.01,0.013,0.016,0.02,0.024,0.029,0.033,0.038,0.044,0.049,0.055,0.062,0.068,0.075,0.082,0.089,0.097,0.105,0.113,0.121,0.13,0.138,0.144,0.149,0.153,0.156,0.158,0.159,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.159,0.157,0.154,0.151,0.146,0.14,0.133,0.126,0.119,0.111,0.102,0.094,0.085,0.077,0.068,0.06,0.052,0.044,0.036,0.029,0.023,0.017,0.012,0.008,0.005,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,0.001,0.003,0.005,0.008,0.013,0.019,0.026,0.034,0.044,0.056,0.07,0.086,0.103,0.123,0.15,0.17,0.21,0.25,0.3,0.36,0.41,0.45,0.49,0.52,0.534,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0.539,0.535,0.529,0.522,0.512,0.501,0.488,0.474,0.458,0.442,0.424,0.405,0.386,0.367,0.346,0.33,0.3,0.28,0.26,0.24,0.22,0.2,0.179,0.16,0.141,0.123,0.105,0.089,0.073,0.059,0.046,0.034,0.024,0.016,0.009,0.004,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.006,0.01,0.015,0.021,0.028,0.035,0.043,0.052,0.061,0.07,0.079,0.089,0.099,0.109,0.118,0.128,0.137,0.146,0.155,0.164,0.171,0.179,0.186,0.192,0.197,0.202,0.205,0.208,0.209,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.21,0.209,0.207,0.203,0.198,0.191,0.184,0.175,0.166,0.156,0.146,0.135,0.124,0.113,0.102,0.091,0.08,0.069,0.059,0.049,0.04,0.032,0.024,0.018,0.012,0.008,0.004,0.002,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.37,0.78,1.3,1.88,2.5,3.12,3.7,4.22,4.63,4.9,5,4.9,4.61,4.17,3.6,2.92,2.18,1.4,0.6,-0.18,-0.92,-1.6,-2.17,-2.61,-2.9,-3,-2.96,-2.83,-2.62,-2.34,-2,-1.59,-1.11,-0.58,0,0.59,1.15,1.69,2.2,2.67,3.13,3.56,3.96,4.34,4.69,5.01,5.31,5.59,5.83,6.06,6.26,6.43,6.59,6.71,6.82,6.9,6.95,6.99,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.97,6.89,6.76,6.59,6.37,6.12,5.84,5.53,5.2,4.85,4.48,4.11,3.74,3.36,2.98,2.62,2.25,1.91,1.59,1.28,1,0.76,0.53,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.02,0.09,0.21,0.36,0.54,0.76,1,1.27,1.55,1.86,2.17,2.5,2.83,3.17,3.5,3.83,4.14,4.45,4.73,5,5.24,5.46,5.64,5.79,5.91,5.98,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5.986,5.95,5.88,5.8,5.69,5.57,5.42,5.26,5.09,4.91,4.71,4.51,4.29,4.07,3.85,3.62,3.38,3.15,2.91,2.68,2.44,2.22,1.99,1.78,1.56,1.36,1.17,0.98,0.81,0.66,0.51,0.38,0.27,0.18,0.1,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.05,-0.2,-0.44,-0.76,-1.14,-1.57,-2.06,-2.56,-3.1,-3.65,-4.21,-4.75,-5.28,-5.78,-6.25,-6.68,-7.06,-7.39,-7.65,-7.84,-7.96,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-8,-7.97,-7.87,-7.72,-7.53,-7.28,-6.99,-6.67,-6.31,-5.93,-5.54,-5.12,-4.69,-4.26,-3.83,-3.4,-2.98,-2.56,-2.17,-1.8,-1.45,-1.13,-0.85,-0.59,-0.38,-0.21,-0.08,-0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02
|
||||
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.06,0.22,0.47,0.78,1.13,1.5,1.87,2.22,2.53,2.78,2.94,3,2.95,2.81,2.58,2.3,1.96,1.59,1.2,0.8,0.41,0.04,-0.3,-0.58,-0.81,-0.95,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.9,-0.79,-0.63,-0.44,-0.22,0.03,0.29,0.58,0.88,1.19,1.5,1.81,2.12,2.42,2.71,2.97,3.22,3.44,3.63,3.79,3.9,3.97,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3.984,3.94,3.86,3.76,3.64,3.5,3.33,3.16,2.97,2.77,2.56,2.35,2.13,1.92,1.71,1.5,1.29,1.09,0.91,0.73,0.57,0.43,0.31,0.2,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.13,0.28,0.48,0.72,1.01,1.33,1.69,2.07,2.48,2.9,3.33,3.78,4.22,4.67,5.1,5.52,5.93,6.31,6.67,6.99,7.28,7.52,7.72,7.87,7.97,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7.982,7.93,7.84,7.73,7.59,7.42,7.23,7.02,6.79,6.55,6.28,6.01,5.72,5.43,5.13,4.82,4.51,4.2,3.88,3.57,3.26,2.96,2.66,2.37,2.09,1.82,1.56,1.31,1.08,0.88,0.68,0.51,0.36,0.24,0.14,0.06,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.05,-0.18,-0.39,-0.66,-1,-1.37,-1.8,-2.24,-2.72,-3.2,-3.68,-4.15,-4.62,-5.06,-5.47,-5.84,-6.18,-6.46,-6.69,-6.86,-6.96,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-6.97,-6.89,-6.76,-6.58,-6.37,-6.12,-5.83,-5.52,-5.19,-4.85,-4.47,-4.1,-3.73,-3.34,-2.97,-2.6,-2.24,-1.9,-1.57,-1.27,-0.98,-0.74,-0.51,-0.33,-0.18,-0.07,0,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_NECKLACE=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_01=1
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_01=1
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.45,-0.99,-1.71,-2.56,-3.53,-4.64,-5.77,-6.99,-8.22,-9.47,-10.68,-11.88,-13.01,-14.07,-15.03,-15.88,-16.62,-17.2,-17.64,-17.91,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-17.93,-17.72,-17.38,-16.93,-16.37,-15.73,-15,-14.19,-13.34,-12.43,-11.48,-10.5,-9.5,-8.5,-7.5,-6.52,-5.57,-4.66,-3.81,-3,-2.27,-1.63,-1.07,-0.62,-0.28,-0.07,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.4,-0.88,-1.52,-2.28,-3.14,-4.12,-5.13,-6.21,-7.31,-8.42,-9.49,-10.56,-11.56,-12.51,-13.36,-14.12,-14.77,-15.29,-15.68,-15.92,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-15.94,-15.75,-15.45,-15.05,-14.55,-13.98,-13.33,-12.62,-11.86,-11.05,-10.2,-9.33,-8.45,-7.55,-6.67,-5.8,-4.95,-4.14,-3.38,-2.67,-2.02,-1.45,-0.95,-0.55,-0.25,-0.06,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.18,-0.39,-0.66,-1,-1.39,-1.81,-2.27,-2.76,-3.25,-3.75,-4.24,-4.73,-5.19,-5.61,-6,-6.34,-6.61,-6.82,-6.95,-7,-6.97,-6.89,-6.75,-6.56,-6.32,-6.04,-5.72,-5.37,-4.97,-4.55,-4.09,-3.62,-3.11,-2.59,-2.05,-1.5,-0.93,-0.37,0.21,0.79,1.37,1.93,2.5,3.05,3.59,4.11,4.62,5.09,5.55,5.97,6.37,6.72,7.04,7.32,7.56,7.75,7.89,7.97,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7.93,7.73,7.44,7.05,6.6,6.08,5.53,4.96,4.37,3.78,3.2,2.63,2.09,1.6,1.15,0.76,0.44,0.21,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.11,-0.4,-0.88,-1.52,-2.28,-3.14,-4.12,-5.13,-6.21,-7.31,-8.42,-9.49,-10.56,-11.56,-12.51,-13.36,-14.12,-14.77,-15.29,-15.68,-15.92,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-15.94,-15.75,-15.45,-15.05,-14.55,-13.98,-13.33,-12.62,-11.86,-11.05,-10.2,-9.33,-8.45,-7.55,-6.67,-5.8,-4.95,-4.14,-3.38,-2.67,-2.02,-1.45,-0.95,-0.55,-0.25,-0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.74,0.26,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.74,0.26,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.04,0.09,0.15,0.22,0.29,0.36,0.43,0.48,0.53,0.57,0.59,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.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.598,0.591,0.579,0.564,0.546,0.52,0.5,0.47,0.44,0.41,0.38,0.35,0.32,0.28,0.25,0.22,0.19,0.16,0.13,0.1,0.08,0.05,0.036,0.021,0.009,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.01,0.02,0.033,0.048,0.063,0.078,0.092,0.105,0.115,0.123,0.128,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.13,0.129,0.128,0.126,0.122,0.118,0.114,0.108,0.103,0.096,0.09,0.083,0.076,0.069,0.061,0.054,0.047,0.04,0.034,0.027,0.022,0.016,0.012,0.008,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
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58,0.58
|
||||
PARAM_BROW_R_ANGLE=0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57,0.57
|
||||
PARAM_BROW_L_FORM=0
|
||||
PARAM_BROW_R_FORM=0
|
||||
PARAM_MOUTH_FORM=1
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.05,-0.19,-0.41,-0.7,-1.02,-1.39,-1.76,-2.14,-2.51,-2.86,-3.18,-3.46,-3.69,-3.86,-3.96,-4,-3.95,-3.82,-3.61,-3.34,-3,-2.63,-2.2,-1.76,-1.28,-0.8,-0.32,0.15,0.62,1.06,1.47,1.84,2.18,2.46,2.69,2.86,2.96,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2.985,2.94,2.87,2.78,2.66,2.53,2.38,2.22,2.05,1.87,1.69,1.5,1.31,1.13,0.95,0.78,0.62,0.47,0.34,0.22,0.13,0.06,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.07,0.15,0.25,0.38,0.52,0.67,0.83,1,1.17,1.33,1.48,1.62,1.75,1.85,1.93,1.98,2,1.95,1.8,1.56,1.24,0.86,0.43,-0.06,-0.56,-1.1,-1.65,-2.21,-2.75,-3.28,-3.78,-4.25,-4.68,-5.06,-5.39,-5.65,-5.84,-5.96,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-6,-5.981,-5.92,-5.83,-5.71,-5.57,-5.4,-5.2,-4.99,-4.76,-4.52,-4.26,-4,-3.73,-3.46,-3.18,-2.89,-2.62,-2.35,-2.08,-1.82,-1.56,-1.32,-1.1,-0.89,-0.7,-0.52,-0.37,-0.24,-0.14,-0.06,-0.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.04,-0.14,-0.31,-0.52,-0.77,-1.04,-1.32,-1.61,-1.88,-2.15,-2.39,-2.6,-2.77,-2.89,-2.97,-3,-2.93,-2.75,-2.45,-2.05,-1.58,-1.04,-0.42,0.21,0.88,1.57,2.26,2.93,3.6,4.23,4.82,5.35,5.82,6.23,6.56,6.8,6.95,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.96,6.86,6.7,6.48,6.22,5.91,5.56,5.19,4.79,4.36,3.94,3.5,3.06,2.64,2.21,1.81,1.44,1.09,0.78,0.52,0.3,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.018,0.07,0.15,0.25,0.38,0.52,0.67,0.83,1,1.17,1.33,1.48,1.62,1.75,1.85,1.93,1.98,2,1.95,1.81,1.59,1.29,0.93,0.53,0.07,-0.4,-0.91,-1.43,-1.95,-2.45,-2.95,-3.42,-3.86,-4.26,-4.62,-4.92,-5.17,-5.35,-5.46,-5.5,-5.496,-5.483,-5.463,-5.44,-5.41,-5.37,-5.33,-5.29,-5.25,-5.21,-5.17,-5.13,-5.09,-5.06,-5.04,-5.017,-5.004,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-4.984,-4.94,-4.86,-4.76,-4.64,-4.5,-4.34,-4.16,-3.97,-3.76,-3.55,-3.34,-3.11,-2.88,-2.65,-2.41,-2.18,-1.95,-1.73,-1.51,-1.3,-1.1,-0.92,-0.74,-0.58,-0.44,-0.31,-0.2,-0.12,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_NECKLACE=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_01=1
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_01=1
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,1,2.11,3.56,5.26,7.19,9.25,11.38,13.6,15.83,18.01,20.14,22.16,24,25.7,27.15,28.34,29.23,29.8,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.18,0.39,0.66,1,1.39,1.81,2.27,2.76,3.25,3.75,4.24,4.73,5.19,5.61,6,6.34,6.61,6.82,6.95,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.79,6.24,5.45,4.46,3.37,2.22,1.07,-0.06,-1.11,-2.06,-2.84,-3.46,-3.86,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.98,-3.92,-3.83,-3.7,-3.55,-3.38,-3.18,-2.97,-2.75,-2.51,-2.27,-2.03,-1.79,-1.55,-1.32,-1.1,-0.89,-0.7,-0.53,-0.37,-0.24,-0.14,-0.06,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0.76,1.55,2.54,3.63,4.78,5.93,7.06,8.11,9.06,9.84,10.46,10.86,11,10.63,9.59,7.95,5.81,3.29,0.39,-2.77,-6.09,-9.5,-12.91,-16.23,-19.39,-22.29,-24.81,-26.95,-28.59,-29.63,-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,-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,-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,-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.26,0.55,0.95,1.43,1.99,2.59,3.25,3.94,4.65,5.35,6.06,6.75,7.41,8.01,8.57,9.05,9.45,9.74,9.93,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9.5,8.21,6.33,4,1.41,-1.29,-4.03,-6.69,-9.17,-11.41,-13.27,-14.73,-15.67,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-15.92,-15.69,-15.31,-14.82,-14.21,-13.52,-12.72,-11.88,-10.98,-10.04,-9.1,-8.12,-7.16,-6.21,-5.28,-4.39,-3.57,-2.81,-2.11,-1.5,-0.98,-0.56,-0.25,-0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.13,-0.48,-0.99,-1.61,-2.31,-3.04,-3.78,-4.49,-5.16,-5.76,-6.26,-6.66,-6.91,-7,-6.78,-6.17,-5.24,-4.03,-2.62,-1.01,0.7,2.49,4.33,6.2,8.01,9.78,11.46,13,14.42,15.63,16.62,17.36,17.83,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.11,0.19,0.29,0.4,0.52,0.65,0.79,0.93,1.07,1.21,1.35,1.48,1.6,1.71,1.81,1.89,1.95,1.99,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1.89,1.59,1.15,0.62,0.02,-0.61,-1.24,-1.85,-2.42,-2.94,-3.37,-3.71,-3.92,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3.98,-3.92,-3.83,-3.7,-3.55,-3.38,-3.18,-2.97,-2.75,-2.51,-2.27,-2.03,-1.79,-1.55,-1.32,-1.1,-0.89,-0.7,-0.53,-0.37,-0.24,-0.14,-0.06,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_L_OPEN=0
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_EYE_R_OPEN=0
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.014,-0.05,-0.11,-0.18,-0.25,-0.33,-0.42,-0.49,-0.56,-0.61,-0.65,-0.68,-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.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.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.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.69,-0.69,-0.69,-0.687,-0.677,-0.661,-0.64,-0.62,-0.59,-0.56,-0.52,-0.49,-0.45,-0.41,-0.37,-0.33,-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.001,-0.002,-0.004,-0.007,-0.009,-0.013,-0.016,-0.02,-0.025,-0.03,-0.035,-0.041,-0.047,-0.054,-0.061,-0.068,-0.075,-0.083,-0.091,-0.1,-0.109,-0.117,-0.127,-0.136,-0.146,-0.155,-0.165,-0.176,-0.186,-0.197,-0.207,-0.218,-0.229,-0.24,-0.252,-0.263,-0.274,-0.286,-0.297,-0.309,-0.32,-0.332,-0.343,-0.355,-0.367,-0.378,-0.39,-0.401,-0.413,-0.424,-0.435,-0.446,-0.457,-0.468,-0.479,-0.49,-0.5,-0.511,-0.521,-0.531,-0.541,-0.55,-0.56,-0.569,-0.578,-0.586,-0.595,-0.603,-0.611,-0.618,-0.625,-0.632,-0.639,-0.645,-0.651,-0.656,-0.662,-0.666,-0.671,-0.675,-0.678,-0.681,-0.684,-0.686,-0.688,-0.689,-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.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.686,-0.677,-0.66,-0.64,-0.61,-0.58,-0.55,-0.51,-0.47,-0.43,-0.39,-0.35,-0.31,-0.27,-0.23,-0.19,-0.15,-0.12,-0.09,-0.06,-0.04,-0.024,-0.011,-0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_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.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,-0.982,-0.93,-0.85,-0.75,-0.62,-0.48,-0.33,-0.17,0,0.17,0.33,0.48,0.62,0.75,0.85,0.93,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,1,1,1,1,1,1,1,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.982,0.961,0.94,0.91,0.88,0.85,0.82,0.8,0.78,0.763,0.753,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.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.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.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.75,0.75,0.75,0.746,0.736,0.719,0.7,0.67,0.64,0.6,0.57,0.53,0.49,0.44,0.4,0.36,0.32,0.28,0.23,0.2,0.16,0.13,0.09,0.07,0.04,0.026,0.012,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.003,0.005,0.007,0.01,0.014,0.018,0.022,0.027,0.033,0.038,0.045,0.052,0.059,0.066,0.074,0.082,0.09,0.099,0.108,0.118,0.128,0.138,0.148,0.158,0.169,0.18,0.191,0.202,0.214,0.226,0.237,0.249,0.261,0.274,0.286,0.298,0.311,0.323,0.336,0.348,0.361,0.373,0.386,0.399,0.411,0.424,0.436,0.448,0.461,0.473,0.485,0.497,0.509,0.521,0.533,0.544,0.555,0.566,0.577,0.588,0.598,0.608,0.618,0.628,0.637,0.647,0.655,0.664,0.672,0.68,0.687,0.694,0.701,0.708,0.714,0.719,0.724,0.729,0.733,0.737,0.74,0.743,0.746,0.748,0.749,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.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.746,0.735,0.718,0.69,0.67,0.63,0.6,0.56,0.51,0.47,0.43,0.38,0.34,0.29,0.25,0.21,0.17,0.13,0.1,0.07,0.05,0.026,0.012,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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
|
||||
PARAM_MOUTH_OPEN_Y=0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.27,-0.56,-0.92,-1.32,-1.74,-2.16,-2.57,-2.95,-3.29,-3.58,-3.8,-3.95,-4,-3.89,-3.57,-3.09,-2.46,-1.72,-0.89,0.01,0.93,1.89,2.86,3.81,4.73,5.6,6.4,7.14,7.77,8.28,8.67,8.91,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8.95,8.83,8.62,8.36,8.04,7.66,7.25,6.8,6.34,5.84,5.34,4.82,4.3,3.8,3.3,2.81,2.35,1.91,1.51,1.14,0.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.06,0.14,0.24,0.37,0.52,0.69,0.88,1.08,1.29,1.52,1.76,2,2.25,2.5,2.75,3,3.24,3.48,3.71,3.92,4.12,4.31,4.48,4.63,4.76,4.86,4.94,4.98,5,4.91,4.66,4.26,3.73,3.12,2.41,1.64,0.83,0,-0.83,-1.64,-2.41,-3.12,-3.73,-4.26,-4.66,-4.91,-5,-4.91,-4.67,-4.3,-3.81,-3.25,-2.6,-1.92,-1.21,-0.47,0.28,1,1.71,2.39,3,3.57,4.05,4.45,4.74,4.93,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.97,4.9,4.79,4.63,4.44,4.22,3.98,3.71,3.43,3.14,2.84,2.54,2.24,1.94,1.65,1.37,1.12,0.88,0.66,0.47,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
|
||||
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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.04,-0.14,-0.28,-0.46,-0.66,-0.87,-1.08,-1.28,-1.47,-1.65,-1.79,-1.9,-1.97,-2,-1.92,-1.7,-1.37,-0.93,-0.42,0.16,0.77,1.42,2.08,2.75,3.4,4.04,4.65,5.2,5.71,6.15,6.5,6.77,6.94,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.96,6.86,6.7,6.48,6.22,5.91,5.56,5.19,4.79,4.37,3.93,3.48,3.02,2.56,2.1,1.64,1.2,0.76,0.35,-0.05,-0.41,-0.75,-1.06,-1.33,-1.56,-1.75,-1.89,-1.97,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1.984,-1.94,-1.86,-1.76,-1.63,-1.48,-1.31,-1.12,-0.92,-0.71,-0.48,-0.24,0,0.25,0.5,0.75,1,1.24,1.48,1.71,1.92,2.12,2.31,2.48,2.63,2.76,2.86,2.94,2.98,3,2.95,2.79,2.55,2.24,1.87,1.45,0.99,0.5,0,-0.5,-0.99,-1.45,-1.87,-2.24,-2.55,-2.79,-2.95,-3,-2.93,-2.73,-2.44,-2.05,-1.6,-1.08,-0.53,0.04,0.63,1.22,1.8,2.37,2.91,3.4,3.85,4.24,4.56,4.79,4.95,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4.97,4.9,4.79,4.63,4.44,4.22,3.98,3.71,3.43,3.14,2.84,2.54,2.24,1.94,1.65,1.37,1.12,0.88,0.66,0.47,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
|
||||
PARAM_BODY_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.1,0.22,0.38,0.56,0.78,1.01,1.25,1.5,1.75,1.99,2.22,2.44,2.62,2.78,2.9,2.97,3,2.87,2.52,2.01,1.39,0.69,-0.04,-0.78,-1.49,-2.16,-2.76,-3.26,-3.66,-3.91,-4,-3.96,-3.83,-3.65,-3.41,-3.12,-2.8,-2.46,-2.1,-1.73,-1.36,-1,-0.64,-0.31,0,0.28,0.53,0.72,0.87,0.97,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_NECKLACE=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_02=0
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_L_01=1
|
||||
VISIBLE:PARTS_01_CLOTHES_01_ARM_R_01=1
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.38,0.83,1.42,2.13,2.95,3.86,4.81,5.82,6.85,7.9,8.9,9.9,10.84,11.73,12.52,13.24,13.85,14.34,14.7,14.92,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14.88,14.53,13.98,13.28,12.42,11.46,10.4,9.27,8.09,6.89,5.65,4.43,3.24,2.06,0.97,-0.06,-1.01,-1.86,-2.59,-3.18,-3.63,-3.9,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.06,-0.23,-0.5,-0.85,-1.28,-1.77,-2.32,-2.88,-3.49,-4.11,-4.74,-5.34,-5.94,-6.5,-7.04,-7.51,-7.94,-8.31,-8.6,-8.82,-8.95,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9
|
||||
PARAM_ANGLE_Z=0,-0.14,-0.53,-1.13,-1.9,-2.81,-3.83,-4.93,-6.07,-7.25,-8.45,-9.61,-10.74,-11.82,-12.8,-13.71,-14.48,-15.12,-15.59,-15.89,-16,-15.9,-15.6,-15.14,-14.55,-13.83,-13.02,-12.13,-11.18,-10.18,-9.17,-8.13,-7.1,-6.09,-5.11,-4.18,-3.32,-2.52,-1.8,-1.19,-0.69,-0.31,-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.05,0.18,0.39,0.66,1,1.37,1.8,2.24,2.72,3.2,3.68,4.15,4.62,5.06,5.47,5.84,6.18,6.46,6.69,6.86,6.96,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6.95,6.82,6.61,6.33,5.99,5.59,5.14,4.64,4.12,3.54,2.95,2.34,1.71,1.06,0.41,-0.25,-0.89,-1.53,-2.15,-2.76,-3.35,-3.91,-4.43,-4.93,-5.37,-5.78,-6.13,-6.43,-6.67,-6.85,-6.96,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7
|
||||
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,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.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
|
||||
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,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.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
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=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,0,0,0,0,0,0.001,0,0.002,0.003,0,0.004,0,0.006,0.006,0.01,0.007,0.01,0.008,0.01,0.009,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.004,-0.011,-0.03,-0.06,-0.09,-0.12,-0.15,-0.18,-0.21,-0.24,-0.26,-0.275,-0.286,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.29,-0.285,-0.272,-0.25,-0.22,-0.19,-0.16,-0.12,-0.09,-0.05,-0.02,0.01,0.04,0.06,0.076,0.087,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09,0.09
|
||||
PARAM_EYE_BALL_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.004,0.009,0.014,0.022,0.03,0.039,0.048,0.058,0.068,0.079,0.089,0.099,0.109,0.118,0.127,0.135,0.142,0.148,0.153,0.157,0.159,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.166,0.183,0.21,0.24,0.27,0.31,0.34,0.38,0.41,0.44,0.46,0.483,0.496,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.498,0.492,0.482,0.47,0.456,0.441,0.425,0.409,0.393,0.378,0.365,0.353,0.343,0.336,0.332,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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
|
||||
PARAM_MOUTH_OPEN_Y=0,0.2,0.4,1,1,1,0.08,0.74,1,1,1,0.96,0.64,0.32,0,0.59,1,1,1,1,0.42,0.44,0.46,1,1,1,1,0.9,0.73,0.99,1,0.9,0.55,0.52,0.49,0.6,0.71,0.69,0.675,0.47,0.26,0.15,0.05,0.046,0.045,0.043,0.042,0.041,0.04,0.038,0.037,0.036,0.035,0.033,0.032,0.031,0.03,0.028,0.027,0.026,0.025,0.024,0.022,0.021,0.02,0.019,0.017,0.016,0.015,0.014,0.012,0.011,0.01,0.009,0.007,0.006,0.005,0.004,0.002,0.001,0,0.34,0.68,0.95,1,1,0.8,0.59,0.38,0.23,0.08,0.075,0.071,0.068,0.064,0.061,0.057,0.053,0.05,0.046,0.043,0.039,0.036,0.032,0.029,0.025,0.021,0.018,0.014,0.011,0.007,0.004,0,0.14,0.28,0.14,0,0.14,0.27,0.85,1,1,1,1,0.05,0.03,0.01,0.14,0.28,0.41,0.55,1,1,1,0.31,0.98,1,0.84,0.02,0.05,0.08,0.35,0.62,0.47,0.32,0.16,0,0.04,0.08,0.35,0.62,0.47,0.32,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_BODY_ANGLE_X=0,-0.03,-0.13,-0.28,-0.47,-0.7,-0.96,-1.23,-1.52,-1.81,-2.11,-2.4,-2.68,-2.95,-3.2,-3.43,-3.62,-3.78,-3.9,-3.97,-4,-3.97,-3.9,-3.78,-3.64,-3.46,-3.25,-3.03,-2.79,-2.54,-2.29,-2.03,-1.77,-1.52,-1.28,-1.05,-0.83,-0.63,-0.45,-0.3,-0.17,-0.08,-0.02,0,0,0,0,0,0,0,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.21,0.44,0.75,1.12,1.54,1.99,2.46,2.94,3.42,3.88,4.32,4.73,5.09,5.4,5.66,5.84,5.96,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5.96,5.84,5.65,5.39,5.09,4.74,4.35,3.93,3.48,3.02,2.54,2.05,1.56,1.09,0.62,0.15,-0.28,-0.69,-1.08,-1.42,-1.73,-1.99,-2.21,-2.37,-2.47,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5,-2.5
|
||||
PARAM_BODY_ANGLE_Z=0,-0.021,-0.08,-0.17,-0.3,-0.45,-0.63,-0.82,-1.04,-1.27,-1.51,-1.75,-2,-2.25,-2.49,-2.73,-2.96,-3.18,-3.38,-3.55,-3.7,-3.83,-3.92,-3.98,-4,-3.98,-3.92,-3.83,-3.7,-3.55,-3.38,-3.18,-2.96,-2.73,-2.49,-2.25,-2,-1.75,-1.51,-1.27,-1.04,-0.82,-0.63,-0.45,-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.018,0.07,0.15,0.25,0.37,0.51,0.66,0.82,0.98,1.14,1.29,1.44,1.58,1.7,1.8,1.89,1.95,1.99,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1.981,1.92,1.83,1.71,1.56,1.38,1.18,0.95,0.71,0.45,0.18,-0.09,-0.38,-0.67,-0.96,-1.25,-1.54,-1.83,-2.1,-2.37,-2.62,-2.86,-3.08,-3.28,-3.46,-3.62,-3.75,-3.86,-3.94,-3.98,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_ACCESSORIES=0
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0.001,0.006,0.013,0.023,0.036,0.052,0.071,0.09,0.12,0.15,0.18,0.21,0.25,0.29,0.33,0.38,0.43,0.48,0.54,0.6,0.66,0.73,0.8,0.87,0.94,1.02,1.11,1.19,1.28,1.38,1.47,1.57,1.68,1.78,1.89,2.01,2.13,2.25,2.37,2.5,2.64,2.77,2.91,3.04,3.17,3.3,3.42,3.54,3.65,3.76,3.86,3.96,4.06,4.15,4.24,4.33,4.41,4.48,4.55,4.61,4.67,4.73,4.78,4.83,4.87,4.9,4.93,4.96,4.975,4.989,4.997,5,4.96,4.84,4.67,4.44,4.18,3.87,3.55,3.21,2.86,2.5,2.15,1.81,1.48,1.17,0.89,0.64,0.42,0.26,0.14,0.07,0.03,0.01,-0.007,-0.013,-0.014,-0.012,-0.008,-0.004,-0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0.8,2.82,5.55,8.74,12.06,15.33,18.43,21.04,23.14,24.5,25,24.75,24.04,22.89,21.38,19.52,17.4,14.97,12.38,9.63,6.75,3.86,0.86,-2.08,-4.99,-7.82,-10.55,-13.06,-15.41,-17.54,-19.41,-21.01,-22.28,-23.22,-23.8,-24,-23.98,-23.91,-23.81,-23.66,-23.48,-23.26,-23.01,-22.72,-22.41,-22.06,-21.69,-21.29,-20.87,-20.42,-19.96,-19.47,-18.96,-18.43,-17.9,-17.34,-16.77,-16.19,-15.6,-15.01,-14.41,-13.79,-13.17,-12.56,-11.93,-11.31,-10.68,-10.07,-9.44,-8.83,-8.21,-7.61,-7.02,-6.42,-5.84,-5.28,-4.73,-4.19,-3.66,-3.15,-2.66,-2.19,-1.73,-1.3,-0.89,-0.51,-0.16,0.07,0.19,0.23,0.211,0.17,0.11,0.05,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
|
||||
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.27,0.59,1.02,1.56,2.19,2.9,3.68,4.53,5.44,6.4,7.39,8.42,9.46,10.5,11.54,12.58,13.61,14.6,15.56,16.47,17.32,18.1,18.81,19.44,19.98,20.41,20.73,20.93,21,20.81,20.27,19.45,18.39,17.14,15.73,14.22,12.65,11.03,9.39,7.79,6.23,4.75,3.4,2.15,1.09,0.21,-0.43,-0.85,-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
|
||||
PARAM_EYE_L_OPEN=1.06,1.06,1.06,1.06,1.06,1.059,1.06,1.057,1.057,1.056,1.055,1.053,1.052,1.05,1.049,1.047,1.045,1.043,1.041,1.039,1.036,1.034,1.031,1.028,1.025,1.022,1.019,1.015,1.012,1.008,1.004,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_EYE_R_OPEN=1.06,1.06,1.06,1.06,1.06,1.059,1.06,1.057,1.057,1.056,1.055,1.053,1.052,1.05,1.049,1.047,1.045,1.043,1.041,1.039,1.036,1.034,1.031,1.028,1.025,1.022,1.019,1.015,1.012,1.008,1.004,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=0
|
||||
PARAM_EYE_BALL_X=0
|
||||
PARAM_EYE_BALL_Y=0,-0.007,-0.027,-0.06,-0.09,-0.14,-0.18,-0.23,-0.28,-0.33,-0.38,-0.43,-0.47,-0.51,-0.54,-0.56,-0.575,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.58,-0.578,-0.577,-0.576,-0.574,-0.571,-0.569,-0.566,-0.562,-0.558,-0.553,-0.548,-0.542,-0.535,-0.528,-0.521,-0.512,-0.503,-0.494,-0.485,-0.475,-0.466,-0.457,-0.448,-0.439,-0.43,-0.421,-0.412,-0.403,-0.394,-0.385,-0.376,-0.368,-0.359,-0.35,-0.342,-0.333,-0.325,-0.316,-0.308,-0.3,-0.291,-0.283,-0.275,-0.267,-0.259,-0.252,-0.244,-0.236,-0.229,-0.221,-0.214,-0.206,-0.199,-0.192,-0.185,-0.178,-0.171,-0.165,-0.158,-0.152,-0.145,-0.139,-0.133,-0.127,-0.121,-0.115,-0.109,-0.104,-0.098,-0.093,-0.088,-0.083,-0.078,-0.073,-0.068,-0.064,-0.059,-0.055,-0.051,-0.047,-0.043,-0.039,-0.036,-0.032,-0.029,-0.026,-0.023,-0.02,-0.018,-0.016,-0.013,-0.011,-0.009,-0.008,-0.006,-0.005,-0.003,-0.002,-0.002,-0.001,0,0,0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_L_Y=1
|
||||
PARAM_BROW_R_Y=1
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_BROW_L_ANGLE=-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.37,-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.37,-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.37,-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.37,-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.37,-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.37,-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.37,-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.37,-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.37,-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.37
|
||||
PARAM_BROW_R_ANGLE=-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45,-0.45
|
||||
PARAM_BROW_L_FORM=-2
|
||||
PARAM_BROW_R_FORM=-2
|
||||
PARAM_MOUTH_FORM=1
|
||||
PARAM_MOUTH_OPEN_Y=0,0.73,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.05,0.89,1,1,0.36,0.38,0.41,0.86,1,1,1,0.98,0.66,0.34,0.02,0.15,0.28,0.41,0.54,0.68,0.81,0.66,0.52,0.502,0.486,0.471,0.455,0.49,0.52,0.33,0.14,0.25,0.36,0.69,1,1,1,1,1,1,1,0.992,0.14,0.4,0.66,1,1,1,1,1,1,1,1,0.62,0.02,0.012,0,0.19,0.38,0.58,0.77,1,1,1,1,1,1,1,0.93,0.77,0.6,0.608,0.612,0.53,0.44,0.435,0.431,0.25,0.08,0.21,0.35,0.48,0.61,0.607,0.601,0.596,0.591,0.586,0.58,0.34,0.1,0.26,0.42,0.24,0.06,0.22,0.38,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.18,0.39,0.65,0.94,1.27,1.61,1.95,2.3,2.63,2.95,3.24,3.49,3.7,3.86,3.96,4,3.98,3.92,3.83,3.71,3.56,3.39,3.19,2.99,2.77,2.54,2.3,2.06,1.83,1.59,1.37,1.15,0.95,0.76,0.59,0.44,0.31,0.21,0.13,0.08,0.068,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07,0.07
|
||||
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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.15,0.33,0.57,0.86,1.19,1.55,1.95,2.36,2.79,3.21,3.64,4.05,4.45,4.81,5.14,5.43,5.67,5.85,5.96,6,5.96,5.85,5.67,5.44,5.15,4.83,4.47,4.08,3.68,3.26,2.84,2.42,2.02,1.63,1.27,0.95,0.66,0.43,0.25,0.14,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1
|
||||
PARAM_BODY_ANGLE_Y=0,0,0,0,0,0,0,0.19,0.68,1.33,2.1,2.89,3.68,4.42,5.05,5.55,5.88,6,5.996,5.983,5.96,5.93,5.89,5.85,5.79,5.73,5.65,5.57,5.49,5.39,5.29,5.18,5.06,4.93,4.8,4.67,4.52,4.37,4.21,4.05,3.88,3.71,3.53,3.32,3.1,2.88,2.64,2.41,2.17,1.92,1.68,1.45,1.22,1.01,0.81,0.62,0.45,0.3,0.17,0.07,0,-0.06,-0.11,-0.16,-0.2,-0.23,-0.26,-0.29,-0.31,-0.34,-0.36,-0.39,-0.41,-0.44,-0.47,-0.5,-0.53,-0.57,-0.62,-0.68,-0.73,-0.79,-0.84,-0.88,-0.92,-0.95,-0.98,-0.994,-1,-0.981,-0.93,-0.86,-0.77,-0.67,-0.57,-0.47,-0.36,-0.27,-0.18,-0.11,-0.06,-0.02,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01,-0.01
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_ACCESSORIES=0
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.05,0.12,0.21,0.32,0.45,0.6,0.76,0.95,1.14,1.36,1.58,1.82,2.06,2.31,2.57,2.83,3.1,3.37,3.63,3.9,4.17,4.43,4.69,4.94,5.18,5.42,5.64,5.86,6.05,6.24,6.4,6.55,6.68,6.79,6.88,6.95,6.99,7,6.96,6.86,6.71,6.5,6.25,5.96,5.64,5.29,4.93,4.54,4.15,3.75,3.35,2.95,2.57,2.19,1.83,1.49,1.17,0.89,0.63,0.42,0.24,0.11,0.03,0,0.03,0.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.08,0.17,0.29,0.45,0.64,0.85,1.09,1.35,1.63,1.94,2.26,2.59,2.94,3.3,3.67,4.05,4.42,4.81,5.19,5.58,5.95,6.33,6.7,7.06,7.41,7.74,8.06,8.37,8.65,8.91,9.15,9.36,9.55,9.71,9.83,9.92,9.98,10,9.8,9.23,8.33,7.14,5.72,4.05,2.22,0.24,-1.84,-4.05,-6.27,-8.57,-10.88,-13.12,-15.33,-17.51,-19.54,-21.49,-23.3,-24.93,-26.38,-27.62,-28.62,-29.37,-29.84,-30,-28.59,-24.89,-19.55,-13.44,-7.1,-1.19,3.86,7.71,10.14,11,9.23,5.41,0.64,-4.31,-8.84,-12.58,-15.07,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16,-16
|
||||
PARAM_ANGLE_Z=-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.83,-29.35,-28.58,-27.57,-26.33,-24.9,-23.26,-21.5,-19.53,-17.48,-15.29,-12.96,-10.52,-8.02,-5.43,-2.75,0,3.19,5.69,7.65,9.21,10.41,11.32,12.01,12.48,12.78,12.95,13,12.98,12.91,12.8,12.65,12.47,12.24,11.98,11.69,11.37,11.03,10.64,10.24,9.82,9.37,8.91,8.43,7.93,7.43,6.91,6.38,5.84,5.3,4.75,4.2,3.65,3.1,2.54,2,1.39,0.83,0.31,-0.17,-0.6,-1.01,-1.38,-1.71,-2.01,-2.29,-2.54,-2.77,-2.97,-3.15,-3.31,-3.45,-3.56,-3.67,-3.75,-3.83,-3.88,-3.93,-3.96,-3.98,-3.996,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_EYE_L_OPEN=0,0,0,0,0,0,0,0.001,0,0,0.002,0,0.003,0,0.005,0.005,0.01,0.007,0.008,0.008,0.009,0.01,0.011,0.013,0.014,0.015,0.016,0.017,0.019,0.02,0.022,0.023,0.025,0.026,0.028,0.03,0.032,0.033,0.035,0.037,0.039,0.041,0.043,0.046,0.048,0.05,0.052,0.055,0.057,0.06,0.062,0.065,0.068,0.071,0.073,0.076,0.079,0.082,0.085,0.089,0.092,0.095,0.098,0.102,0.105,0.109,0.112,0.116,0.12,0.123,0.127,0.131,0.135,0.139,0.143,0.147,0.151,0.156,0.16,0.165,0.169,0.174,0.24,0.39,0.59,0.79,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_EYE_R_OPEN=0,0,0,0,0,0,0,0.001,0,0.002,0,0.003,0,0.004,0.005,0.01,0.007,0.008,0.008,0.009,0.011,0.012,0.013,0.014,0.015,0.017,0.018,0.019,0.021,0.022,0.024,0.026,0.028,0.029,0.031,0.033,0.035,0.037,0.039,0.042,0.044,0.046,0.048,0.051,0.053,0.056,0.059,0.061,0.064,0.067,0.07,0.073,0.076,0.079,0.082,0.085,0.088,0.092,0.095,0.099,0.102,0.106,0.11,0.113,0.117,0.121,0.125,0.129,0.133,0.137,0.142,0.146,0.151,0.155,0.16,0.164,0.169,0.174,0.179,0.184,0.189,0.194,0.26,0.41,0.6,0.79,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=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,0,0,0,0,0,0,0,0,0,0,-0.002,-0.005,-0.009,-0.014,-0.02,-0.027,-0.035,-0.043,-0.052,-0.062,-0.072,-0.083,-0.094,-0.106,-0.117,-0.129,-0.142,-0.154,-0.166,-0.178,-0.191,-0.203,-0.214,-0.226,-0.237,-0.248,-0.258,-0.268,-0.277,-0.285,-0.293,-0.3,-0.306,-0.311,-0.315,-0.318,-0.319,-0.32,-0.309,-0.28,-0.23,-0.18,-0.13,-0.08,-0.03,0,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.009,0.007,0.006,0.004,0.003,0.002,0.001,0,0,0,0.002,0.004,0.006,0.007,0.009,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01
|
||||
PARAM_EYE_BALL_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.001,0.002,0.003,0.004,0.005,0.007,0.009,0.01,0.012,0.014,0.017,0.019,0.022,0.025,0.028,0.031,0.034,0.038,0.041,0.045,0.049,0.053,0.058,0.062,0.067,0.072,0.077,0.082,0.087,0.093,0.099,0.105,0.111,0.117,0.123,0.13,0.136,0.142,0.147,0.151,0.154,0.157,0.159,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.141,0.09,0.02,-0.06,-0.14,-0.22,-0.29,-0.34,-0.37,-0.38,-0.34,-0.27,-0.17,-0.07,0.02,0.09,0.14,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16,0.16
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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
|
||||
PARAM_MOUTH_OPEN_Y=0,0.02,0.05,0.91,1,1,1,1,1,0.93,0.6,1,1,1,1,1,1,1,1,1,1,0.98,0.41,0.56,0.71,0.52,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0.3,1,1,1,0.9,0.87,0.84,1,1,1,1,0.7,0.4,0.6,0.8,1,1,1,1,1,1,0.76,0.15,0.11,0.06,0.36,0.65,0.45,0.26,0.39,0.52,0.48,0.45,0.83,1,1,1,1,1,1,0.95,1,1,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.015,0.034,0.06,0.09,0.13,0.18,0.24,0.3,0.37,0.44,0.52,0.61,0.71,0.81,0.92,1.03,1.15,1.28,1.41,1.55,1.7,1.85,2,2.17,2.33,2.51,2.69,2.87,3.06,3.26,3.46,3.66,3.87,4.09,4.31,4.54,4.77,5,5.24,5.47,5.69,5.9,6.09,6.27,6.41,6.53,6.61,6.67,6.73,6.78,6.82,6.86,6.89,6.91,6.93,6.951,6.965,6.976,6.985,6.991,6.995,6.998,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
|
||||
PARAM_BODY_ANGLE_Z=-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1.981,-1.93,-1.85,-1.76,-1.64,-1.51,-1.37,-1.23,-1.07,-0.92,-0.77,-0.62,-0.47,-0.34,-0.21,-0.1,0,0.09,0.19,0.28,0.37,0.46,0.54,0.63,0.71,0.79,0.87,0.95,1.03,1.11,1.18,1.26,1.33,1.41,1.48,1.55,1.62,1.69,1.76,1.83,1.9,1.98,2.04,2.12,2.19,2.26,2.33,2.4,2.47,2.55,2.62,2.69,2.77,2.84,2.92,3,3.09,3.19,3.29,3.4,3.5,3.6,3.69,3.76,3.8,3.83,3.86,3.89,3.91,3.926,3.942,3.955,3.966,3.975,3.982,3.988,3.992,3.995,3.998,3.999,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4
|
||||
PARAM_BODY_ANGLE_Y=0,0.1,0.39,0.83,1.4,2.08,2.82,3.6,4.4,5.18,5.92,6.6,7.17,7.61,7.9,8,7.96,7.84,7.66,7.41,7.11,6.75,6.35,5.93,5.47,4.99,4.5,4,3.5,3.01,2.53,2.07,1.65,1.25,0.89,0.59,0.34,0.16,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,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.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_ACCESSORIES=0
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.04,-0.16,-0.36,-0.65,-1.03,-1.48,-2.03,-2.65,-3.37,-4.17,-5.05,-6,-7.04,-8.15,-9.34,-10.61,-11.93,-13.34,-14.8,-16.62,-18.27,-19.83,-21.25,-22.55,-23.74,-24.83,-25.8,-26.69,-27.45,-28.12,-28.69,-29.16,-29.52,-29.79,-29.95,-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
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.33,0.73,1.27,1.94,2.74,3.65,4.64,5.73,6.91,8.15,9.42,10.76,12.12,13.52,14.94,16.35,17.78,19.2,20.88,22.32,23.61,24.72,25.68,26.52,27.25,27.85,28.38,28.81,29.16,29.44,29.66,29.82,29.92,29.98,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
|
||||
PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.08,-0.31,-0.65,-1.12,-1.66,-2.28,-2.95,-3.65,-4.36,-5.07,-5.76,-6.41,-7.01,-7.55,-8.01,-8.39,-8.67,-8.84,-8.9,-8.41,-7.1,-5.1,-2.61,0.27,3.41,6.75,10.09,13.5,16.72,19.78,22.59,25.07,27.11,28.66,29.65,30,29.86,29.47,28.86,28.08,27.18,26.18,25.16,24.11,23.1,22.12,21.25,20.48,19.85,19.39,19.1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19
|
||||
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,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0.18,0.46,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=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,0,0,0,0,0,0,0,0,0.003,0.011,0.025,0.043,0.07,0.09,0.12,0.16,0.19,0.23,0.27,0.31,0.35,0.39,0.43,0.47,0.51,0.56,0.59,0.64,0.68,0.71,0.74,0.77,0.788,0.806,0.82,0.833,0.842,0.85,0.856,0.86,0.863,0.865,0.866,0.866,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87,0.87
|
||||
PARAM_EYE_BALL_Y=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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
|
||||
PARAM_MOUTH_OPEN_Y=0,0.39,0.78,0.71,0.64,0.32,0,0.4,0.79,0.775,0.758,0.741,0.724,0.707,0.69,0.38,0.08,0.075,0.072,0.069,0.066,0.063,0.06,0.057,0.054,0.051,0.048,0.045,0.042,0.039,0.036,0.033,0.03,0.027,0.024,0.021,0.018,0.015,0.012,0.009,0.006,0.003,0,0.09,0.19,0.5,0.82,0.42,0.03,0.98,1,1,0.37,1,1,1,1,1,1,1,1,1,0.84,0.65,0.47,0.43,0.38,0.34,0.29,0.6,0.9,0.67,0.43,0.48,0.53,0.58,0.63,0.78,0.94,1,1,0.54,0.02,0.19,0.36,0.18,0,0,0,0,0,0,0,0
|
||||
PARAM_CHEEK=0
|
||||
PARAM_SWEAT=0
|
||||
PARAM_ARM_L=0
|
||||
PARAM_BODY_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.014,-0.06,-0.13,-0.23,-0.37,-0.53,-0.72,-0.94,-1.19,-1.48,-1.79,-2.12,-2.49,-2.88,-3.29,-3.74,-4.2,-4.69,-5.2,-5.76,-6.28,-6.77,-7.22,-7.61,-7.97,-8.27,-8.53,-8.73,-8.88,-8.97,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9,-9
|
||||
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.012,-0.05,-0.1,-0.19,-0.29,-0.42,-0.58,-0.75,-0.95,-1.18,-1.42,-1.69,-1.98,-2.28,-2.61,-2.96,-3.32,-3.7,-4.1,-4.54,-4.94,-5.31,-5.65,-5.95,-6.23,-6.46,-6.65,-6.8,-6.91,-6.98,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7
|
||||
PARAM_BODY_ANGLE_Y=0
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_ACCESSORIES=0
|
||||
46
assets/face/live2d/model/histoire/motions/tap/m_06.mtn
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
|
||||
$fadein=300
|
||||
|
||||
$fadeout=500
|
||||
|
||||
PARAM_ANGLE_X=0
|
||||
PARAM_ANGLE_Y=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,-29.3,-27.35,-24.27,-20.36,-15.69,-10.61,-5.24,0.24,5.61,10.69,15.36,19.27,22.35,24.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25
|
||||
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,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
|
||||
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.73,1,1,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_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,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
|
||||
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.73,1,1,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_FORM=0
|
||||
PARAM_EYE_BALL_X=0,0,0,0,0,0,0,0,-0.002,-0.006,-0.012,-0.017,-0.022,-0.026,-0.029,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.03,-0.028,-0.022,-0.015,-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,0,0,0,0,0
|
||||
PARAM_EYE_BALL_Y=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,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
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
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=1
|
||||
PARAM_MOUTH_OPEN_Y=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,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_CHEEK=0
|
||||
PARAM_ARM_L_01=0,0,0,0,0,0,0,0,-0.44,-1.51,-2.82,-4.1,-5.13,-5.78,-6,-6.014,-6.019,-5.96,-5.8,-5.53,-5.17,-4.75,-4.3,-3.83,-3.36,-2.94,-2.56,-2.26,-2.07,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2
|
||||
PARAM_ARM_L_02=0,0,0,0,0,0,0,0,0.29,1.01,1.94,2.91,3.79,4.5,5,5.28,5.37,5.64,6.13,6.62,7.13,7.63,8.09,8.54,8.95,9.29,9.59,9.81,9.95,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
|
||||
PARAM_HAND_L=0
|
||||
PARAM_ARM_R_01=0,0,0,0,0,0,0,0,-0.29,-1.01,-1.88,-2.73,-3.42,-3.85,-4,-3.997,-3.85,-3.35,-2,-0.57,0.91,2.43,4,7.73,11.93,15.1,17,18.39,18.91,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19
|
||||
PARAM_ARM_R_02=0,0,0,0,0,0,0,0,0.18,0.66,1.36,2.2,3.12,4.07,5,6,6.77,7.59,8.68,9.31,9.71,9.93,10,9.8,9.03,7.71,6,2.15,-1.99,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_HAND_R=0
|
||||
PARAM_LEG_L=0,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.94,-2.76,-2.48,-2.12,-1.7,-1.24,-0.75,-0.25,0.24,0.7,1.12,1.48,1.76,1.94,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
|
||||
PARAM_LEG_R=0,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.96,-2.86,-2.69,-2.47,-2.22,-1.94,-1.65,-1.35,-1.06,-0.78,-0.53,-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
|
||||
PARAM_BODY_ANGLE_X=0
|
||||
PARAM_BODY_ANGLE_Y=0,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.76,-9.08,-8.02,-6.67,-5.06,-3.3,-1.44,0.44,2.3,4.06,5.67,7.02,8.08,8.76,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9
|
||||
PARAM_BODY_ANGLE_Z=0,0,0,0,0,0,0,0,0.21,0.76,1.56,2.51,3.49,4.44,5.24,5.79,6,5.86,5.47,4.86,4.08,3.18,2.18,1.16,0.11,-0.9,-1.88,-2.75,-3.52,-4.15,-4.61,-4.9,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FLUFFY=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,0.88,0.62,0.29,-0.05,-0.36,-0.62,-0.79,-0.85,-0.77,-0.58,-0.36,-0.12,0.09,0.27,0.39,0.43,0.415,0.38,0.32,0.26,0.19,0.13,0.07,0.03,0.01,0,0,0,0,0,0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_BASE_X=0
|
||||
PARAM_BASE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,2.71,5.75,9.4,15.27,19.98,22,19.5,15.18,10.59,6.36,2.92,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
46
assets/face/live2d/model/histoire/motions/tap/m_13.mtn
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
|
||||
$fadein=200
|
||||
|
||||
$fadeout=500
|
||||
|
||||
PARAM_ANGLE_X=0
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,-0.69,-2.49,-5.1,-8.08,-11.17,-14.05,-16.52,-18.4,-19.58,-20,-19.62,-18.63,-17.18,-15.39,-13.4,-11.31,-9.21,-7.16,-5.25,-3.53,-2.1,-0.98,-0.25,0,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
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,0.74,0.26,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,0.74,0.26,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_FORM=0
|
||||
PARAM_EYE_BALL_X=0
|
||||
PARAM_EYE_BALL_Y=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_L_Y=0
|
||||
PARAM_BROW_R_Y=0
|
||||
PARAM_BROW_L_X=0,0,0,0,0,0,-0.003,-0.012,-0.026,-0.045,-0.07,-0.09,-0.12,-0.15,-0.18,-0.21,-0.23,-0.26,-0.28,-0.31,-0.324,-0.339,-0.351,-0.358,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36,-0.36
|
||||
PARAM_BROW_R_X=0,0,0,0,0,0,-0.003,-0.012,-0.026,-0.044,-0.07,-0.09,-0.12,-0.14,-0.17,-0.2,-0.23,-0.25,-0.28,-0.3,-0.315,-0.33,-0.341,-0.348,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35,-0.35
|
||||
PARAM_BROW_L_ANGLE=0,0,0,0,0,0,-0.004,-0.015,-0.032,-0.05,-0.08,-0.11,-0.14,-0.18,-0.21,-0.25,-0.28,-0.31,-0.34,-0.36,-0.39,-0.405,-0.419,-0.427,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43
|
||||
PARAM_BROW_R_ANGLE=0,0,0,0,0,0,-0.004,-0.015,-0.032,-0.05,-0.08,-0.11,-0.14,-0.18,-0.21,-0.25,-0.28,-0.31,-0.34,-0.36,-0.39,-0.405,-0.419,-0.427,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43,-0.43
|
||||
PARAM_BROW_L_FORM=0,0,0,0,0,0,-0.004,-0.016,-0.035,-0.06,-0.09,-0.12,-0.16,-0.19,-0.23,-0.27,-0.3,-0.34,-0.37,-0.4,-0.42,-0.443,-0.458,-0.467,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47,-0.47
|
||||
PARAM_BROW_R_FORM=0,0,0,0,0,0,-0.004,-0.017,-0.035,-0.06,-0.09,-0.12,-0.16,-0.2,-0.24,-0.27,-0.31,-0.35,-0.38,-0.41,-0.43,-0.452,-0.467,-0.477,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48,-0.48
|
||||
PARAM_MOUTH_FORM=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.87,0.59,0.23,-0.13,-0.47,-0.75,-0.93,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
|
||||
PARAM_MOUTH_OPEN_Y=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,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_CHEEK=0
|
||||
PARAM_ARM_L_01=0,0,0,0,0,0,0.05,0.21,0.45,0.76,1.13,1.55,2.01,2.5,3,3.5,3.99,4.45,4.87,5.24,5.55,5.79,5.95,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6
|
||||
PARAM_ARM_L_02=0,0,0,0,0,0,-0.18,-0.69,-1.49,-2.53,-3.76,-5.18,-6.72,-8.34,-10,-11.66,-13.28,-14.82,-16.24,-17.47,-18.51,-19.31,-19.82,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20,-20
|
||||
PARAM_HAND_L=0
|
||||
PARAM_ARM_R_01=0,0,0,0,0,0,0.005,0.03,0.11,0.26,0.48,0.79,1.2,1.7,2.3,3,4.71,6.95,9.38,11.75,13.83,15.5,16.6,17,16.4,14.94,13,11.06,9.6,9,9.24,9.89,10.82,11.93,13.07,14.18,15.11,15.76,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16
|
||||
PARAM_ARM_R_02=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.41,8.14,6.55,4.9,3.39,2.14,1.31,1,1.68,3.32,5.5,7.68,9.32,10,9.72,8.99,7.92,6.65,5.35,4.08,3.01,2.28,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
|
||||
PARAM_HAND_R=0
|
||||
PARAM_LEG_L=0,0,0,0,0,0,0.06,0.24,0.52,0.89,1.32,1.81,2.35,2.92,3.5,4.08,4.65,5.19,5.68,6.11,6.48,6.76,6.94,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
|
||||
PARAM_LEG_R=0,0,0,0,0,0,-0.04,-0.14,-0.3,-0.51,-0.75,-1.04,-1.34,-1.67,-2,-2.33,-2.66,-2.96,-3.25,-3.49,-3.7,-3.86,-3.96,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_BODY_ANGLE_X=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,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
|
||||
PARAM_BODY_ANGLE_Y=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,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4
|
||||
PARAM_BODY_ANGLE_Z=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,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
|
||||
PARAM_BREATH=0
|
||||
PARAM_HAIR_FLUFFY=0
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_HAIR_BACK=0
|
||||
PARAM_BASE_X=0
|
||||
PARAM_BASE_Y=0
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
# Live2D Animator Motion Data
|
||||
$fps=30
|
||||
PARAM_SHOULDER_X=6.4,6.36,6.24,6.05,5.79,5.48,5.13,4.74,4.32,3.88,3.42,2.98,2.52,2.08,1.66,1.27,0.92,0.61,0.35,0.16,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0.49,1,1.64,2.34,3.08,3.83,4.56,5.23,5.85,6.35,6.75,7.01,7.1,7.099,7.097,7.092,7.084,7.072,7.057,7.04,7.01,6.98,6.94,6.9,6.84,6.78,6.71,6.63,6.54,6.44,6.33,6.2,6.07,5.92,5.76,5.58,5.39,5.1,4.69,4.19,3.63,3.04,2.44,1.87,1.35,0.89,0.51,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,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0.22,0.45,0.4,0.35,0.3,0.25,0.2,0.15,0.38,0.61,0.58,0.54,0.51,0.47,0.481,0.492,0.502,0.512,0.523,0.533,0.46,0.38,0.19,0,0.46,0.93,0.74,0.55,0.58,0.61,0.64,0.67,0.7,0.73,0.62,0.51,0.4,0.29,0.56,0.84,0.76,0.67,0.65,0.63,0.61,0.59,0.57,0.55,0.53,0.51,0.48,0.46,0.24,0.01,0.35,0.69,0.53,0.37,0.55,0.73,0.733,0.737,0.64,0.53,0.43,0.33,0.62,0.91,0.84,0.76,0.767,0.773,0.778,0.784,0.68,0.58,0.47,0.37,0.378,0.388,0.398,0.408,0.34,0.27,0.2,0.14,0.07,0,0.01,0.02,0.029,0.039,0.34,0.64,0.58,0.52,0.27,0.02,0.47,0.91,0.82,0.73,0.65,0.56,0.6,0.64,0.68,0.72,0.69,0.66,0.63,0.6,0.45,0.3,0.6,0.91,0.77,0.63,0.69,0.75,0.67,0.6,0.36,0.12,0.44,0.77,0.75,0.732,0.714,0.695,0.677,0.659,0.58,0.51,0.514,0.518,0.26,0,0.43,0.86,0.82,0.77,0.38,0,0.29,0.58,0.51,0.43,0.53,0.64,0.51,0.38,0.19,0,0.38,0.77,0.759,0.75,0.741,0.732,0.723,0.714,0.66,0.61,0.46,0.31,0.15,0,0,0,0,0,0,0
|
||||
PARAM_FACE_COVER=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_FEAR=0
|
||||
PARAM_EYE_L_OPEN=1,1,1,0.999,0.998,0.996,0.995,0.993,0.99,0.988,0.985,0.983,0.979,0.976,0.973,0.969,0.965,0.961,0.956,0.952,0.947,0.943,0.938,0.933,0.927,0.922,0.917,0.911,0.906,0.9,0.894,0.889,0.883,0.877,0.871,0.865,0.859,0.853,0.847,0.841,0.835,0.829,0.823,0.817,0.811,0.806,0.8,0.794,0.789,0.783,0.778,0.773,0.767,0.762,0.757,0.753,0.748,0.744,0.739,0.735,0.731,0.727,0.724,0.721,0.717,0.715,0.712,0.71,0.707,0.705,0.704,0.702,0.701,0.701,0.7,0.7,0.71,0.74,0.78,0.82,0.87,0.91,0.95,0.98,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,0.999,0.997,0.993,0.987,0.981,0.974,0.967,0.959,0.951,0.943,0.935,0.928,0.921,0.915,0.91,0.906,0.903,0.901,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.901,0.905,0.91,0.917,0.926,0.935,0.944,0.954,0.963,0.972,0.98,0.987,0.992,0.996,0.999,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_BROW_L_FORM=-1
|
||||
PARAM_TEAR=0
|
||||
PARAM_BROW_L_X=0
|
||||
PARAM_BROW_DEFORMED=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
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.06,-0.16,-0.25,-0.31,-0.34,-0.34,-0.34,-0.34,-0.34,-0.34,-0.34,-0.34,-0.34,-0.342,-0.344,-0.347,-0.351,-0.355,-0.36,-0.367,-0.374,-0.382,-0.392,-0.402,-0.414,-0.427,-0.441,-0.456,-0.473,-0.49,-0.51,-0.531,-0.551,-0.57,-0.589,-0.608,-0.626,-0.643,-0.66,-0.677,-0.693,-0.709,-0.723,-0.737,-0.751,-0.764,-0.776,-0.787,-0.797,-0.807,-0.816,-0.824,-0.832,-0.838,-0.844,-0.849,-0.853,-0.856,-0.858,-0.86,-0.86,-0.859,-0.856,-0.851,-0.845,-0.837,-0.827,-0.816,-0.803,-0.79,-0.775,-0.76,-0.743,-0.726,-0.708,-0.689,-0.67,-0.651,-0.632,-0.612,-0.593,-0.573,-0.554,-0.535,-0.516,-0.498,-0.48,-0.463,-0.446,-0.431,-0.416,-0.403,-0.391,-0.379,-0.369,-0.361,-0.353,-0.348,-0.343,-0.341,-0.34
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_R_OPEN=1,1,1,0.999,0.998,0.996,0.995,0.993,0.99,0.988,0.985,0.983,0.979,0.976,0.973,0.969,0.965,0.961,0.956,0.952,0.947,0.943,0.938,0.933,0.927,0.922,0.917,0.911,0.906,0.9,0.894,0.889,0.883,0.877,0.871,0.865,0.859,0.853,0.847,0.841,0.835,0.829,0.823,0.817,0.811,0.806,0.8,0.794,0.789,0.783,0.778,0.773,0.767,0.762,0.757,0.753,0.748,0.744,0.739,0.735,0.731,0.727,0.724,0.721,0.717,0.715,0.712,0.71,0.707,0.705,0.704,0.702,0.701,0.701,0.7,0.7,0.71,0.74,0.78,0.82,0.87,0.91,0.95,0.98,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,0.999,0.997,0.994,0.989,0.984,0.978,0.971,0.964,0.957,0.949,0.942,0.935,0.928,0.922,0.916,0.911,0.906,0.903,0.9,0.898,0.896,0.894,0.893,0.892,0.891,0.89,0.89,0.89,0.89,0.89,0.89,0.89,0.89,0.89,0.89,0.891,0.895,0.901,0.909,0.918,0.928,0.938,0.949,0.959,0.969,0.977,0.985,0.991,0.996,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_HAIR_BACK=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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.03,0.07,0.13,0.19,0.26,0.34,0.42,0.5,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,1,1,0.999,0.998,0.996,0.995,0.993,0.99,0.987,0.984,0.981,0.977,0.972,0.968,0.962,0.957,0.951,0.944,0.937,0.929,0.921,0.913,0.903,0.894,0.883,0.873,0.861,0.849,0.837,0.823,0.81,0.795,0.78,0.762,0.745,0.728,0.712,0.696,0.681,0.667,0.654,0.641,0.63,0.62,0.611,0.604,0.598,0.594,0.591,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59,0.59
|
||||
PARAM_HAIR_FRONT=0
|
||||
PARAM_EYE_BALL_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.002,0.007,0.016,0.027,0.039,0.054,0.071,0.088,0.105,0.122,0.139,0.156,0.171,0.183,0.194,0.203,0.208,0.21,0.209,0.205,0.199,0.191,0.182,0.17,0.157,0.142,0.126,0.109,0.091,0.072,0.052,0.03,0.011,-0.01,-0.03,-0.05,-0.072,-0.09,-0.112,-0.131,-0.149,-0.166,-0.182,-0.197,-0.21,-0.222,-0.231,-0.239,-0.245,-0.249,-0.25,-0.242,-0.22,-0.19,-0.15,-0.1,-0.05,0,0.06,0.11,0.16,0.21,0.26,0.3,0.33,0.36,0.374,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
|
||||
PARAM_BROW_L_ANGLE=-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-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.91,-0.78,-0.65,-0.56,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.521,-0.52,-0.52,-0.52,-0.52,-0.521,-0.52,-0.519,-0.518,-0.517,-0.516,-0.514,-0.512,-0.51,-0.506,-0.499,-0.491,-0.48,-0.467,-0.452,-0.436,-0.418,-0.399,-0.38,-0.36,-0.34,-0.32,-0.29,-0.27,-0.25,-0.23,-0.21,-0.188,-0.169,-0.15,-0.133,-0.117,-0.102,-0.089,-0.078,-0.068,-0.06,-0.055,-0.051,-0.05,-0.053,-0.061,-0.075,-0.092,-0.11,-0.14,-0.17,-0.2,-0.23,-0.26,-0.29,-0.32,-0.35,-0.38,-0.41,-0.44,-0.46,-0.48,-0.495,-0.505,-0.51,-0.512,-0.514,-0.515,-0.517,-0.518,-0.519,-0.519,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52
|
||||
PARAM_EYE_DEFORMED_04=0
|
||||
PARAM_EYE_DEFORMED_03=0
|
||||
PARAM_EYE_DEFORMED_02=0
|
||||
PARAM_EYE_DEFORMED_01=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.82,0.54,0.27,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_ANGLE_Z=0,-0.08,-0.31,-0.68,-1.18,-1.78,-2.48,-3.27,-4.11,-5.03,-5.98,-6.95,-7.94,-8.94,-9.9,-10.86,-11.78,-12.62,-13.41,-14.11,-14.71,-15.21,-15.58,-15.81,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.89,-15.54,-14.6,-13.16,-11.38,-9.31,-7.06,-4.67,-2.27,0.17,2.48,4.67,6.69,8.47,9.93,11.04,11.75,12,12,12,12,12,12,12,11.97,11.89,11.75,11.56,11.32,11.05,10.73,10.38,9.99,9.58,9.13,8.66,8.17,7.67,7.15,6.63,6.1,5.55,5.02,4.47,3.95,3.43,2.92,2.43,1.96,1.51,1.09,0.69,0.33,0,-0.32,-0.63,-0.93,-1.22,-1.5,-1.78,-2.04,-2.31,-2.56,-2.8,-3.04,-3.27,-3.49,-3.71,-3.93,-4.14,-4.34,-4.54,-4.74,-4.93,-5.12,-5.31,-5.49,-5.67,-5.84,-6.02,-6.19,-6.36,-6.53,-6.69,-6.86,-7.02,-7.18,-7.35,-7.51,-7.67,-7.84,-8,-8.16,-8.32,-8.46,-8.6,-8.73,-8.85,-8.97,-9.07,-9.17,-9.26,-9.35,-9.43,-9.5,-9.57,-9.63,-9.68,-9.73,-9.78,-9.82,-9.85,-9.88,-9.91,-9.93,-9.953,-9.968,-9.98,-9.989,-9.995,-9.999,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10
|
||||
PARAM_BODY_ANGLE_X=0,-0.07,-0.26,-0.55,-0.95,-1.43,-1.99,-2.59,-3.25,-3.94,-4.65,-5.35,-6.06,-6.75,-7.41,-8.01,-8.57,-9.05,-9.45,-9.74,-9.93,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-9.75,-9.04,-7.93,-6.52,-4.88,-3.06,-1.2,0.7,2.55,4.32,5.9,7.3,8.45,9.29,9.82,10,10,10,10,10,10,10,10,10,10,10,9.987,9.95,9.88,9.79,9.67,9.53,9.36,9.18,8.97,8.73,8.48,8.2,7.91,7.6,7.26,6.92,6.55,6.17,5.77,5.35,4.92,4.48,4.03,3.56,3.08,2.59,2.09,1.58,1.06,0.53,0,-0.6,-1.16,-1.72,-2.24,-2.74,-3.23,-3.69,-4.14,-4.56,-4.96,-5.35,-5.72,-6.07,-6.4,-6.71,-7.01,-7.3,-7.56,-7.82,-8.05,-8.27,-8.48,-8.67,-8.85,-9.01,-9.17,-9.3,-9.43,-9.54,-9.64,-9.72,-9.8,-9.86,-9.91,-9.95,-9.98,-9.995,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10
|
||||
PARAM_BODY_ANGLE_Y=-10,-9.93,-9.74,-9.45,-9.05,-8.57,-8.01,-7.41,-6.75,-6.06,-5.35,-4.65,-3.94,-3.25,-2.59,-1.99,-1.43,-0.95,-0.55,-0.26,-0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.34,-0.74,-1.27,-1.88,-2.59,-3.36,-4.17,-5,-5.83,-6.64,-7.41,-8.12,-8.73,-9.26,-9.66,-9.91,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-9.6,-8.53,-6.92,-4.9,-2.67,-0.29,2.04,4.22,6.14,7.76,8.98,9.74,10,9.8,9.26,8.44,7.41,6.23,4.94,3.56,2.19,0.79,-0.54,-1.8,-2.95,-3.97,-4.81,-5.45,-5.86,-6,-5.96,-5.85,-5.67,-5.43,-5.15,-4.82,-4.45,-4.08,-3.67,-3.26,-2.84,-2.44,-2.04,-1.66,-1.31,-0.99,-0.71,-0.46,-0.27,-0.12,-0.03,0
|
||||
PARAM_BODY_ANGLE_Z=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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.23,-0.36,-0.45,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.49,-0.492,-0.494,-0.497,-0.501,-0.506,-0.511,-0.517,-0.523,-0.531,-0.538,-0.546,-0.555,-0.564,-0.573,-0.583,-0.593,-0.603,-0.614,-0.624,-0.635,-0.646,-0.657,-0.668,-0.679,-0.69,-0.701,-0.712,-0.723,-0.733,-0.744,-0.754,-0.764,-0.773,-0.783,-0.791,-0.8,-0.808,-0.816,-0.823,-0.829,-0.836,-0.841,-0.846,-0.85,-0.853,-0.856,-0.858,-0.86,-0.86,-0.859,-0.857,-0.854,-0.849,-0.843,-0.836,-0.829,-0.82,-0.81,-0.8,-0.789,-0.777,-0.764,-0.752,-0.739,-0.725,-0.712,-0.698,-0.684,-0.67,-0.656,-0.642,-0.629,-0.615,-0.602,-0.59,-0.577,-0.566,-0.555,-0.544,-0.535,-0.526,-0.518,-0.511,-0.505,-0.5,-0.495,-0.492,-0.491,-0.49
|
||||
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.02,-26.4,-22.45,-17.51,-12.03,-6.22,-0.51,4.83,9.55,13.52,16.5,18.36,19,18.52,17.24,15.29,12.85,10.04,6.98,3.71,0.45,-2.88,-6.03,-9.02,-11.76,-14.19,-16.17,-17.69,-18.66,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19,-19
|
||||
PARAM_BREATH=0
|
||||
PARAM_BROW_R_X=0
|
||||
PARAM_ANGLE_X=0,-0.07,-0.28,-0.61,-1.04,-1.58,-2.19,-2.85,-3.57,-4.33,-5.11,-5.89,-6.67,-7.43,-8.15,-8.81,-9.42,-9.96,-10.39,-10.72,-10.93,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-11,-10.86,-10.47,-9.86,-9.08,-8.18,-7.18,-6.16,-5.11,-4.1,-3.12,-2.25,-1.48,-0.85,-0.39,-0.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,0,0,0,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,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-29.84,-29.37,-28.65,-27.72,-26.62,-25.42,-24.15,-22.85,-21.58,-20.38,-19.28,-18.35,-17.63,-17.16,-17,-17.013,-17.05,-17.1,-17.18,-17.26,-17.35,-17.45,-17.55,-17.65,-17.74,-17.82,-17.9,-17.95,-17.99,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18,-18
|
||||
PARAM_ARM_R=-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-9.87,-9.52,-8.96,-8.25,-7.4,-6.47,-5.5,-4.5,-3.53,-2.6,-1.75,-1.04,-0.48,-0.13,0,-0.07,-0.25,-0.55,-0.95,-1.42,-1.96,-2.58,-3.21,-3.88,-4.57,-5.26,-5.93,-6.6,-7.23,-7.82,-8.35,-8.82,-9.23,-9.56,-9.8,-9.95,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10
|
||||
PARAM_ARM_L=-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-9.87,-9.52,-8.96,-8.25,-7.4,-6.47,-5.5,-4.5,-3.53,-2.6,-1.75,-1.04,-0.48,-0.13,0,-0.07,-0.25,-0.55,-0.95,-1.42,-1.96,-2.58,-3.21,-3.88,-4.57,-5.26,-5.93,-6.6,-7.23,-7.82,-8.35,-8.82,-9.23,-9.56,-9.8,-9.95,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10,-10
|
||||
PARAM_MOUTH_FORM=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.18,-0.46,-0.73,-0.92,-1,-0.96,-0.87,-0.76,-0.64,-0.55,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.51,-0.511,-0.51,-0.51,-0.512,-0.51,-0.51,-0.513,-0.51,-0.514,-0.515,-0.52,-0.516,-0.52,-0.518,-0.518,-0.52,-0.52,-0.521,-0.521,-0.522,-0.52,-0.524,-0.525,-0.526,-0.526,-0.527,-0.528,-0.529,-0.53,-0.531,-0.532,-0.533,-0.534,-0.535,-0.536,-0.537,-0.538,-0.539,-0.54,-0.54,-0.542,-0.543,-0.544,-0.545,-0.546,-0.547,-0.548,-0.549,-0.55,-0.551,-0.552,-0.553,-0.554,-0.554,-0.555,-0.556,-0.557,-0.56,-0.559,-0.559,-0.56,-0.561,-0.56,-0.562,-0.563,-0.56,-0.564,-0.56,-0.566,-0.566,-0.57,-0.567,-0.57,-0.57,-0.568,-0.57,-0.57,-0.569,-0.57,-0.57,-0.57,-0.57,-0.57,-0.57
|
||||
PARAM_HAIR_SIDE=0
|
||||
PARAM_EYE_BALL_FORM=0
|
||||
PARAM_BROW_R_ANGLE=-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-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.91,-0.78,-0.65,-0.56,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.521,-0.52,-0.52,-0.52,-0.52,-0.521,-0.52,-0.519,-0.518,-0.517,-0.516,-0.514,-0.512,-0.51,-0.506,-0.5,-0.491,-0.481,-0.468,-0.454,-0.438,-0.422,-0.404,-0.385,-0.365,-0.345,-0.324,-0.3,-0.28,-0.26,-0.241,-0.222,-0.202,-0.183,-0.166,-0.149,-0.134,-0.12,-0.107,-0.096,-0.087,-0.08,-0.074,-0.071,-0.07,-0.073,-0.081,-0.093,-0.11,-0.13,-0.15,-0.18,-0.21,-0.24,-0.27,-0.3,-0.33,-0.36,-0.39,-0.42,-0.44,-0.46,-0.481,-0.495,-0.505,-0.51,-0.512,-0.514,-0.515,-0.517,-0.518,-0.519,-0.519,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52,-0.52
|
||||
PARAM_SWEAT=0
|
||||
PARAM_BROW_R_FORM=-1
|
||||
PARAM_TERE=0
|
||||
PARAM_EYE_BALL_GLITTER=0
|
||||
PARAM_STRING=0
| ||||