I have a unique three.js codepen project where square particles drift through the space.
However, I am now looking to enhance it by incorporating text (perhaps using geometry?) instead of the square particles, creating a word/tag cloud effect. Is this even possible?
Check out my current codepen experiment here: https://codepen.io/farisk/pen/pWQGxB
Here's the visual result I am aiming for: https://i.sstatic.net/gIg3u.jpg
At the moment, I am unsure about where to begin.
My initial thought was to utilize a text geometry like so:
var loader = new THREE.FontLoader();
let font = loader.parse(fontJSON);
var geometry = new THREE.TextGeometry("hello", {font: font, size: 120, height: 10, material: 0});
But someone cautioned that this approach might not be correct. Since I am fairly new to three.js / html canvas, I would greatly appreciate any guidance or assistance.