├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── three-text2d.js └── three-text2d.min.js ├── example ├── index.html └── usage.js ├── package.json ├── src ├── CanvasText.ts ├── MeshText2D.ts ├── SpriteText2D.ts ├── Text2D.ts ├── index.ts └── utils.ts ├── tsconfig.json ├── webpack.config.js ├── webpack.dist.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | example/bundle.js 3 | typings 4 | .vscode/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/README.md -------------------------------------------------------------------------------- /dist/three-text2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/dist/three-text2d.js -------------------------------------------------------------------------------- /dist/three-text2d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/dist/three-text2d.min.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/example/index.html -------------------------------------------------------------------------------- /example/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/example/usage.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/package.json -------------------------------------------------------------------------------- /src/CanvasText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/CanvasText.ts -------------------------------------------------------------------------------- /src/MeshText2D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/MeshText2D.ts -------------------------------------------------------------------------------- /src/SpriteText2D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/SpriteText2D.ts -------------------------------------------------------------------------------- /src/Text2D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/Text2D.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/webpack.dist.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamestdio/three-text2d/HEAD/yarn.lock --------------------------------------------------------------------------------