├── .gitignore ├── README.md ├── gulpfile.js ├── package.json ├── public └── live2d-character-v2 │ ├── files │ └── 0 │ │ └── live2d │ │ └── official-models │ │ └── haru │ │ ├── expressions │ │ ├── f01.exp.json │ │ ├── f02.exp.json │ │ ├── f03.exp.json │ │ ├── f04.exp.json │ │ ├── f05.exp.json │ │ ├── f06.exp.json │ │ ├── f07.exp.json │ │ └── f08.exp.json │ │ ├── haru.model.json │ │ ├── haru.physics.json │ │ ├── haru.pose.json │ │ ├── haru_01.1024 │ │ ├── texture_00.png │ │ ├── texture_01.png │ │ └── texture_02.png │ │ ├── haru_01.moc │ │ ├── haru_01.model.json │ │ ├── haru_02.1024 │ │ ├── texture_00.png │ │ ├── texture_01.png │ │ └── texture_02.png │ │ ├── haru_02.moc │ │ ├── haru_02.model.json │ │ ├── motions │ │ ├── flickHead_00.mtn │ │ ├── idle_00.mtn │ │ ├── idle_01.mtn │ │ ├── idle_02.mtn │ │ ├── pinchIn_00.mtn │ │ ├── pinchOut_00.mtn │ │ ├── shake_00.mtn │ │ ├── tapBody_00.mtn │ │ ├── tapBody_01.mtn │ │ ├── tapBody_02.mtn │ │ ├── tapBody_03.mtn │ │ ├── tapBody_04.mtn │ │ ├── tapBody_05.mtn │ │ ├── tapBody_06.mtn │ │ ├── tapBody_07.mtn │ │ ├── tapBody_08.mtn │ │ └── tapBody_09.mtn │ │ └── sounds │ │ ├── flickHead_00.mp3 │ │ ├── pinchIn_00.mp3 │ │ ├── pinchOut_00.mp3 │ │ ├── shake_00.mp3 │ │ ├── tapBody_00.mp3 │ │ ├── tapBody_01.mp3 │ │ └── tapBody_02.mp3 │ ├── mod.json │ └── preview.jpg └── src ├── character-skin.js ├── fetch.umd.js ├── laya-l2d.js └── live2d-sdk.clj-pack.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | public/**/lib/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/package.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f01.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f01.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f02.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f02.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f03.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f03.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f04.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f04.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f05.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f05.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f06.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f06.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f07.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f07.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f08.exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/expressions/f08.exp.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru.model.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru.physics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru.physics.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru.pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru.pose.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_00.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_01.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.1024/texture_02.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.moc -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_01.model.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_00.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_01.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.1024/texture_02.png -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.moc -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/haru_02.model.json -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/flickHead_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/flickHead_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_01.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_01.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_02.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/idle_02.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/pinchIn_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/pinchIn_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/pinchOut_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/pinchOut_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/shake_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/shake_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_00.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_00.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_01.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_01.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_02.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_02.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_03.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_03.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_04.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_04.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_05.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_05.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_06.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_06.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_07.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_07.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_08.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_08.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_09.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/motions/tapBody_09.mtn -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/flickHead_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/flickHead_00.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/pinchIn_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/pinchIn_00.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/pinchOut_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/pinchOut_00.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/shake_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/shake_00.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_00.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_01.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/files/0/live2d/official-models/haru/sounds/tapBody_02.mp3 -------------------------------------------------------------------------------- /public/live2d-character-v2/mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/public/live2d-character-v2/mod.json -------------------------------------------------------------------------------- /public/live2d-character-v2/preview.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/character-skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/src/character-skin.js -------------------------------------------------------------------------------- /src/fetch.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/src/fetch.umd.js -------------------------------------------------------------------------------- /src/laya-l2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/src/laya-l2d.js -------------------------------------------------------------------------------- /src/live2d-sdk.clj-pack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantpand2000/majsoul-live2d-mods/HEAD/src/live2d-sdk.clj-pack.min.js --------------------------------------------------------------------------------