All Projects → gamestdio → Three Text2d

gamestdio / Three Text2d

Licence: mit
Render texture from canvas into THREE's Mesh or Sprite.

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to Three Text2d

Aframe Effects
A VR Ready Post processing framework for Three.js and/or A-Frame
Stars: ✭ 176 (-21.08%)
Mutual labels:  threejs
Node Occ
build BREP Solids with OpenCascade and NodeJS - 3D Modeling
Stars: ✭ 202 (-9.42%)
Mutual labels:  threejs
Hdri To Cubemap
Image converter from spherical map to cubemap
Stars: ✭ 207 (-7.17%)
Mutual labels:  threejs
Ar.js
Image tracking, Location Based AR, Marker tracking. All on the Web.
Stars: ✭ 3,048 (+1266.82%)
Mutual labels:  threejs
React Three Next
React Three Fiber, Nextjs, Tailwind starter
Stars: ✭ 195 (-12.56%)
Mutual labels:  threejs
Magicshader
🔮 Tiny helper for three.js to debug and write shaders
Stars: ✭ 205 (-8.07%)
Mutual labels:  threejs
Threejs Modern App
Boilerplate and utils for a fullscreen Three.js app
Stars: ✭ 176 (-21.08%)
Mutual labels:  threejs
Ifc.js
Ifc viewer for client applications.
Stars: ✭ 211 (-5.38%)
Mutual labels:  threejs
Droneworld
droneWorld: a 3D world map and a three.js playground
Stars: ✭ 197 (-11.66%)
Mutual labels:  threejs
Pathfinding Visualizer Threejs
A visualizer for pathfinding algorithms in 3D with maze generation, first-person view and device camera input.
Stars: ✭ 209 (-6.28%)
Mutual labels:  threejs
Robot Gui
A three.js based 3D robot interface.
Stars: ✭ 181 (-18.83%)
Mutual labels:  threejs
Three Nebula
WebGL based particle system engine for three.js
Stars: ✭ 192 (-13.9%)
Mutual labels:  threejs
Three.interaction.js
three.js interaction toolkit, help you built an interaction event-system for three.js, binding interaction event like browser-dom
Stars: ✭ 206 (-7.62%)
Mutual labels:  threejs
Three Projected Material
📽 Three.js Material which lets you do Texture Projection on a 3d Model
Stars: ✭ 177 (-20.63%)
Mutual labels:  threejs
Blueprint Js
The Javascript es6 version of the original furnishup/blueprint3d. Need some royalty free low poly models for the inventory. Can someone help me with this?
Stars: ✭ 208 (-6.73%)
Mutual labels:  threejs
Pipes
💿 Classic 3D Pipes screensaver remake (web-based)
Stars: ✭ 176 (-21.08%)
Mutual labels:  threejs
Demos
One repo to rule them all.
Stars: ✭ 204 (-8.52%)
Mutual labels:  threejs
Three Seed
A Three.js starter project with ES6 and Webpack
Stars: ✭ 213 (-4.48%)
Mutual labels:  threejs
Three.vrcontroller
Support hand controllers for Oculus, Vive, Windows Mixed Reality, Daydream, GearVR, and more by adding VRController to your existing Three.js-based WebVR project.
Stars: ✭ 213 (-4.48%)
Mutual labels:  threejs
Forgejs
ForgeJS is a javascript framework that unleashes immersive WebVR experiences.
Stars: ✭ 207 (-7.17%)
Mutual labels:  threejs

three-text2d

Render texture from canvas into THREE's Mesh or Sprite.

Usage

Mesh

import { MeshText2D, textAlign } from 'three-text2d'

var text = new MeshText2D("RIGHT", { align: textAlign.right, font: '30px Arial', fillStyle: '#000000', antialias: true })
scene.add(text)

Sprite

import { SpriteText2D, textAlign } from 'three-text2d'

var sprite = new SpriteText2D("SPRITE", { align: textAlign.center,  font: '40px Arial', fillStyle: '#000000' , antialias: false })
scene.add(sprite)

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].