Removed debug messages
This commit is contained in:
parent
8a929ea923
commit
1a69b98ca1
@ -356,12 +356,10 @@ public:
|
|||||||
const osg::Matrix& value = (object.*_getter)();
|
const osg::Matrix& value = (object.*_getter)();
|
||||||
if ( os.isBinary() )
|
if ( os.isBinary() )
|
||||||
{
|
{
|
||||||
OSG_NOTICE<<"MatrixSerializer::write() binary"<<std::endl;
|
|
||||||
os << value;
|
os << value;
|
||||||
}
|
}
|
||||||
else if ( ParentType::_defaultValue!=value )
|
else if ( ParentType::_defaultValue!=value )
|
||||||
{
|
{
|
||||||
OSG_NOTICE<<"MatrixSerializer::write() ascii, ParentType::_name="<<ParentType::_name<<std::endl;
|
|
||||||
os << PROPERTY((ParentType::_name).c_str()) << value << std::endl;
|
os << PROPERTY((ParentType::_name).c_str()) << value << std::endl;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user