Added files back in with the execution bit correctly disabled.

This commit is contained in:
Robert Osfield
2010-01-28 08:59:23 +00:00
parent 91f8306d63
commit 56cf703094
103 changed files with 3902 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#undef OBJECT_CAST
#define OBJECT_CAST dynamic_cast
#include <osg/AnimationPath>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( AnimationPathCallback,
new osg::AnimationPathCallback,
osg::AnimationPathCallback,
"osg::Object osg::NodeCallback osg::AnimationPathCallback" )
{
ADD_OBJECT_SERIALIZER( AnimationPath, osg::AnimationPath, NULL ); // _animationPath
ADD_VEC3D_SERIALIZER( PivotPoint, osg::Vec3d() ); // _pivotPoint
ADD_BOOL_SERIALIZER( UseInverseMatrix, false ); // _useInverseMatrix
ADD_DOUBLE_SERIALIZER( TimeOffset, 0.0 ); // _timeOffset
ADD_DOUBLE_SERIALIZER( TimeMultiplier, 1.0 ); // _timeMultiplier
ADD_BOOL_SERIALIZER( Pause, false ); // _pause
}
#undef OBJECT_CAST
#define OBJECT_CAST static_cast