.osgt specification #1364
-
Can i find, and if yes, then where, full specification for .osgt format with all available nodes, options, etc. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There isn't a human readable specification for the .osgt and .osgb, the C++ serializers provide the definitive guide to what each version can read/write. The .osgt and .osgb formats are intended for native reading/writing of scene graphs rather as an interchange format like gltf etc. The public interface for the serializer is: https://github.com/openscenegraph/OpenSceneGraph/blob/master/include/osgDB/Serializer The serializer implementations can be found in the source tree: https://github.com/openscenegraph/OpenSceneGraph/tree/master/src/osgWrappers/serializers What should be possible to to load the serailizers and they query them to get the supported classes and the members/types that each class serializes. |
Beta Was this translation helpful? Give feedback.
There isn't a human readable specification for the .osgt and .osgb, the C++ serializers provide the definitive guide to what each version can read/write. The .osgt and .osgb formats are intended for native reading/writing of scene graphs rather as an interchange format like gltf etc.
The public interface for the serializer is:
https://github.com/openscenegraph/OpenSceneGraph/blob/master/include/osgDB/Serializer
The serializer implementations can be found in the source tree:
https://github.com/openscenegraph/OpenSceneGraph/tree/master/src/osgWrappers/serializers
What should be possible to to load the serailizers and they query them to get the supported classes and the members/types that ea…