Text doesn't work with latest nightly build?

Hi all,



I've got a problem with my code since I've been using the latest nightly build.

Is only displays a rectangle without text in it (where the text should be in).



I'm using the following code:



textColor = new ColorRGBA(0.5f, 1.0f, 1.0f, alpha);

textValue = "hello";

text = Text.createDefaultTextLabel(aName + ".text", textValue);                
text.setDefaultColor(textColor);
text.setCullMode(Spatial.CULL_NEVER);
text.setLocalTranslation(new Vector3f(position.x,
                                                      position.y,
                                                      1.0f));
this.attachChild(text);



What changed in the latest code that it doesn't work like before?

Thanks,

Starik