Added TimeMultiplier and LoopingMode to ImageSequence .osg serializer
This commit is contained in:
parent
09b37224ff
commit
b2cd4b5836
@ -27,7 +27,25 @@ bool ImageSequence_readLocalData(Object& obj, Input& fr)
|
|||||||
|
|
||||||
ImageSequence& is = static_cast<ImageSequence&>(obj);
|
ImageSequence& is = static_cast<ImageSequence&>(obj);
|
||||||
|
|
||||||
|
double timeMultiplier;
|
||||||
|
if (fr.read("TimeMultiplier", timeMultiplier))
|
||||||
|
{
|
||||||
|
is.setTimeMultiplier(timeMultiplier);
|
||||||
|
}
|
||||||
|
|
||||||
std::string modeStr;
|
std::string modeStr;
|
||||||
|
if (fr.read("LoopingMode",modeStr))
|
||||||
|
{
|
||||||
|
if (modeStr=="NO_LOOPING")
|
||||||
|
{
|
||||||
|
is.setLoopingMode(osg::ImageSequence::NO_LOOPING);
|
||||||
|
}
|
||||||
|
else if (modeStr=="LOOPING")
|
||||||
|
{
|
||||||
|
is.setLoopingMode(osg::ImageSequence::LOOPING);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (fr.read("Mode",modeStr))
|
if (fr.read("Mode",modeStr))
|
||||||
{
|
{
|
||||||
if (modeStr=="PRE_LOAD_ALL_IMAGES")
|
if (modeStr=="PRE_LOAD_ALL_IMAGES")
|
||||||
@ -101,6 +119,18 @@ bool ImageSequence_writeLocalData(const Object& obj, Output& fw)
|
|||||||
// no current image writing code here
|
// no current image writing code here
|
||||||
// as it is all handled by osg::Registry::writeImage() via plugins.
|
// as it is all handled by osg::Registry::writeImage() via plugins.
|
||||||
|
|
||||||
|
fw.indent()<<"TimeMultiplier "<<is.getTimeMultiplier()<<std::endl;
|
||||||
|
|
||||||
|
switch(is.getLoopingMode())
|
||||||
|
{
|
||||||
|
case(osg::ImageSequence::NO_LOOPING):
|
||||||
|
fw.indent()<<"LoopingMode NO_LOOPING"<<std::endl;
|
||||||
|
break;
|
||||||
|
case(osg::ImageSequence::LOOPING):
|
||||||
|
fw.indent()<<"LoopingMode LOOPING"<<std::endl;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
switch(is.getMode())
|
switch(is.getMode())
|
||||||
{
|
{
|
||||||
case(osg::ImageSequence::PRE_LOAD_ALL_IMAGES):
|
case(osg::ImageSequence::PRE_LOAD_ALL_IMAGES):
|
||||||
|
Loading…
Reference in New Issue
Block a user