Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

12
node_modules/three-stdlib/exporters/MMDExporter.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { SkinnedMesh } from 'three';
/**
* Dependencies
* - mmd-parser https://github.com/takahirox/mmd-parser
*/
declare class MMDExporter {
parseVpd(skin: SkinnedMesh, outputShiftJis: boolean, useOriginalBones: boolean): Uint8Array | string | null;
private u2sTable;
private unicodeToShiftjis;
private getBindBones;
}
export { MMDExporter };