I'm attempting to use TextGeometry in my project to incorporate text.
var shape = new THREE.TextGeometry( 'Hello, World!', {
size: 60,
height: 20,
curveSegments: 3,
font: 'helvetiker',
weight: 'normal',
bevelThickness: 3,
bevelSize: 3,
bevelEnabled: true
});
var wrapper = new THREE.MeshNormalMaterial({color: 0x00ff00});
var words = new THREE.Mesh(shape, wrapper);
scene.add(words);
The console displays an error stating "The font Helvetiker with normal weight and normal style is missing."
I've already included the font and typeface.js in the html file and verified that they have loaded correctly.
<script src="http://typeface.neocracy.org/typeface-0.15.js"></script>
<script src="http://mrdoob.github.com/three.js/examples/fonts/helvetiker_regular.typeface.js"></script>
If anyone could assist me in resolving this issue, it would be greatly appreciated!