Hi Guys,
I'm trying to user the vector text into a project I am working on.
Got some questions:
1. Will the Away3D v2.5 include the TextField3D?
2. What version of Away3D is the TextField branch built on?
3. Do you have a pure AS3 example of this working?
I have tried with no success:
// Code
// I placed a trace in away3d.loaders.TTFLoader for result
on Arial loader complete (was success)
// Also tried a camera.lookat = _textfield still no joy
var _textfield:TextField3D = new TextField3D("hello",
"assets/embedded/fonts/Arial.ttf", {textSize:40});
_textfield.material = new ColorMaterial(0xFFFFFF);
_textfield.extrudeMaterial = new ColorMaterial(0x333333);
_textfield.extrude(10);
scene.addChild(_textfield);
// ** RESULT**
// Nothing displayed
Does anyone have an examples of how to use the class correctly?
Thanks
Darcey