This commit is contained in:
2008-01-15 13:00:29 +00:00
82 changed files with 1929 additions and 470 deletions

View File

@@ -1410,6 +1410,7 @@ static void write_scenes(WriteData *wd, ListBase *scebase)
MetaStack *ms;
Strip *strip;
TimeMarker *marker;
TransformOrientation *ts;
SceneRenderLayer *srl;
int a;
@@ -1514,6 +1515,10 @@ static void write_scenes(WriteData *wd, ListBase *scebase)
for(marker= sce->markers.first; marker; marker= marker->next)
writestruct(wd, DATA, "TimeMarker", 1, marker);
/* writing dynamic list of TransformOrientations to the blend file */
for(ts = sce->transform_spaces.first; ts; ts = ts->next)
writestruct(wd, DATA, "TransformOrientation", 1, ts);
for(srl= sce->r.layers.first; srl; srl= srl->next)
writestruct(wd, DATA, "SceneRenderLayer", 1, srl);