-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from Live2D/develop
Update to Cubism 5 SDK for Web R1
- Loading branch information
Showing
15 changed files
with
1,683 additions
and
6,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Framework
updated
24 files
+64 −9 | .eslintrc.yml | |
+27 −0 | CHANGELOG.md | |
+4 −4 | README.ja.md | |
+4 −4 | README.md | |
+157 −157 | package-lock.json | |
+5 −5 | package.json | |
+17 −13 | src/cubismmodelsettingjson.ts | |
+1 −1 | src/id/cubismid.ts | |
+1 −1 | src/id/cubismidmanager.ts | |
+33 −0 | src/math/cubismmath.ts | |
+50 −50 | src/model/cubismmodel.ts | |
+42 −16 | src/motion/acubismmotion.ts | |
+37 −28 | src/motion/cubismexpressionmotion.ts | |
+40 −4 | src/motion/cubismexpressionmotionmanager.ts | |
+12 −12 | src/motion/cubismmotion.ts | |
+1 −1 | src/motion/cubismmotionmanager.ts | |
+2 −2 | src/motion/cubismmotionqueuemanager.ts | |
+30 −38 | src/physics/cubismphysics.ts | |
+19 −19 | src/rendering/cubismclippingmanager.ts | |
+16 −16 | src/rendering/cubismrenderer.ts | |
+3 −3 | src/rendering/cubismrenderer_webgl.ts | |
+51 −56 | src/rendering/cubismshader_webgl.ts | |
+2 −2 | src/type/csmvector.ts | |
+12 −4 | src/utils/cubismjson.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Copyright(c) Live2D Inc. All rights reserved. | ||
* | ||
* Use of this source code is governed by the Live2D Open Software license | ||
* that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html. | ||
*/ | ||
|
||
"use strict"; | ||
const fs = require('fs'); | ||
const publicResources = [ | ||
{src: '../../../Core', dst: './public/Core'}, | ||
{src: '../../Resources', dst: './public/Resources'}, | ||
]; | ||
|
||
publicResources.forEach((e)=>{if (fs.existsSync(e.dst)) fs.rmSync(e.dst, { recursive: true })}); | ||
publicResources.forEach((e)=>fs.cpSync(e.src, e.dst, {recursive: true})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.