Added files back in with the execution bit correctly disabled.
This commit is contained in:
13
src/osgWrappers/serializers/osg/Sphere.cpp
Normal file
13
src/osgWrappers/serializers/osg/Sphere.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <osg/Shape>
|
||||
#include <osgDB/ObjectWrapper>
|
||||
#include <osgDB/InputStream>
|
||||
#include <osgDB/OutputStream>
|
||||
|
||||
REGISTER_OBJECT_WRAPPER( Sphere,
|
||||
new osg::Sphere,
|
||||
osg::Sphere,
|
||||
"osg::Object osg::Shape osg::Sphere" )
|
||||
{
|
||||
ADD_VEC3_SERIALIZER( Center, osg::Vec3() ); // _center
|
||||
ADD_FLOAT_SERIALIZER( Radius, 0.0f ); // _radius
|
||||
}
|
||||
Reference in New Issue
Block a user