osg::Node *custom_obj = 0;
if (obj->type == OBJECT_SIGN)
- custom_obj = SGMakeSign(opt->getMaterialLib(), custom_path.str(), obj->name);
+ custom_obj = SGMakeSign(opt->getMaterialLib(), obj->name);
else
- custom_obj = SGMakeRunwaySign(opt->getMaterialLib(), custom_path.str(), obj->name);
+ custom_obj = SGMakeRunwaySign(opt->getMaterialLib(), obj->name);
// wire the pieces together
if ( custom_obj != NULL ) {
// see $FG_ROOT/Docs/README.scenery
//
osg::Node*
-SGMakeSign(SGMaterialLib *matlib, const string& path, const string& content)
+SGMakeSign(SGMaterialLib *matlib, const string& content)
{
double sign_height = 1.0; // meter
bool lighted = true;
}
osg::Node*
-SGMakeRunwaySign(SGMaterialLib *matlib, const string& path, const string& name)
+SGMakeRunwaySign(SGMaterialLib *matlib, const string& name)
{
// for demo purposes we assume each element (letter) is 1x1 meter.
// Sign is placed 0.25 meters above the ground
// Generate a generic sign
-osg::Node* SGMakeSign( SGMaterialLib *matlib,
- const string& path, const string& content );
+osg::Node* SGMakeSign( SGMaterialLib *matlib, const string& content );
// Generate a runway sign
-osg::Node* SGMakeRunwaySign( SGMaterialLib *matlib,
- const string& path, const string& name );
+osg::Node* SGMakeRunwaySign( SGMaterialLib *matlib, const string& name );
#endif // _SG_APT_SIGNS_HXX