Improved ParticleEffects

This commit is contained in:
Robert Osfield
2005-04-04 07:54:52 +00:00
parent e4580f2028
commit 22e446dbc9
25 changed files with 917 additions and 289 deletions

View File

@@ -0,0 +1,28 @@
#include <osgParticle/ExplosionEffect>
#include <osgDB/Registry>
#include <osgDB/Input>
#include <osgDB/Output>
bool ExplosionEffect_readLocalData(osg::Object &obj, osgDB::Input &fr);
bool ExplosionEffect_writeLocalData(const osg::Object &obj, osgDB::Output &fw);
osgDB::RegisterDotOsgWrapperProxy ExplosionEffect_Proxy
(
new osgParticle::ExplosionEffect,
"ExplosionEffect",
"Object Node ParticleEffect ExplosionEffect",
ExplosionEffect_readLocalData,
ExplosionEffect_writeLocalData
);
bool ExplosionEffect_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool ExplosionEffect_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}