OpenSceneGraph/src/osgPlugins/ive/FadeText.h
Robert Osfield dba344feba From Lilin Xiong, "I change ive plugin a little for osgText inout, so the ive plugin supports backdrop setting,
and Text3D, FadeText inout :

1. in DataInputStream.cpp, add 1286--1293 lines;
2. in Text.cpp, add some code for text's Backdrop setting;
3. in IveVersion.h, add line 39,  increase the VERSION to VERSION_028(line 41)
4. in ReadWrite.h,  add line 146,147
5. add file FadeText.h, FadeText.cpp, Text3D.h, Text3D.cpp."
2008-07-01 18:37:13 +00:00

16 lines
270 B
C++

#ifndef IVE_FADETEXT
#define IVE_FADETEXT 1
#include <osgText/FadeText>
#include "ReadWrite.h"
namespace ive{
class FadeText : public osgText::FadeText, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif