diff --git a/dist/vrma b/dist/vrma index 12ce52187..1eccc36a5 160000 --- a/dist/vrma +++ b/dist/vrma @@ -1 +1 @@ -Subproject commit 12ce521873fb3a4ec2fd3f5e75a0792351c8a207 +Subproject commit 1eccc36a5113246728ae8b63389c948ce1bd286f diff --git a/src/index.ts b/src/index.ts index 9391cedcc..a6f550273 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,7 @@ import { BloomEffect, EffectComposer, EffectPass, RenderPass } from "postprocess window.addEventListener("DOMContentLoaded", () => { + let default_model = "/vrma/model/test.vrm" // vrma let motion_enable = false; let head = null; @@ -107,7 +108,7 @@ window.addEventListener("DOMContentLoaded", () => { return new VRMAnimationLoaderPlugin(parser); }); - load("/vrma/model/ai.vrm"); + load(default_model); load("/vrma/anime/fly_c.vrma"); let item = null; diff --git a/tsconfig.json b/tsconfig.json index 6794acd31..426d205f2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { - "compilerOptions": { - "target": "es2016", - "module": "commonjs", - "skipLibCheck": true - } + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "skipLibCheck": true + }, + "exclude": [ + "min-*", + "planet" + ] }