osgText::Text* text = new osgText::Text;
text->setText("Then place an osg::Camera above the subgraph\n testing my program");
如果这样输出,OK,OSG可以认识字符串中的\n的格式,可以实现换行,但是如果这样
string szTextOut = "Then place an osg::Camera above the subgraph\n testing my program";
text->setText(szTextOut); 为什么OSG不能认识\n的格式呢?