Re: [osg-users] How to save a specific tile info in a terrain scene?

2012-05-16 Thread Cao Wenjie
Thanks Robert :D Now I got a much clear picture I avoid this problem by wrote a after-load routine. -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=47742#47742 ___ osg-users mailing list

Re: [osg-users] How to save a specific tile info in a terrain scene?

2012-05-14 Thread Robert Osfield
Hi Ceo, osgTerrain::TerrainTile defers the implementation of the subgraph that does the rendering to the osgTerrain::TerrainTechnique implementation assigned to the TerrainTile, the file IO also just writes out the high level detailsof the TerrainTile and not the subgrpah created by the

[osg-users] How to save a specific tile info in a terrain scene?

2012-05-13 Thread Cao Wenjie
Hi, I have a terrain scene load from a terrain.osg file, I can see data like hightField and imageLayer in the terrain.osg file. So, when I use osgDB::readNodeFile to load the terrain, osg will auto generate the TerrainTile - Tile - Geode - Geometry scene graph for me base on those data,