Implemented dust particle system

--HG--
extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%40164
This commit is contained in:
kearwood
2012-11-23 01:02:22 +00:00
parent 230dd4722d
commit 96a9c02a13
19 changed files with 165 additions and 39 deletions

View File

@@ -57,9 +57,10 @@ public:
static bool extension_available[KRENGINE_NUM_EXTENSIONS];
void startFrame();
void endFrame();
void endFrame(float deltaTime);
long getCurrentFrame();
long getCurrentFrame() const;
float getAbsoluteTime() const;
private:
KRBundleManager *m_pBundleManager;
@@ -73,6 +74,7 @@ private:
bool m_bDetectedExtensions;
long m_current_frame;
float m_absolute_time;
};
#endif