4 FileInfoListPtr findFileInfo(const String &pattern, bool recursive, bool dirs = false);
6 bool exists(const String &filename);
8 + time_t getModifiedTime(const String& filename)
10 + struct stat tagStat;
11 + bool ret = (stat(mName.c_str(), &tagStat) == 0);
15 + return tagStat.st_mtime;
26 --- src/scriptsystem.cpp
27 +++ src/scriptsystem.cpp
29 Asteroid *roid = new Asteroid(String(name), ScriptSystem::getSingleton().getSceneMgr(), String(mesh), String(mat), pos);
30 roid->setScale(scale, scale, scale);
31 roid->setMass(scale * 10.0f);
32 - roid->getEntity()->setNormaliseNormals(true);
33 + //roid->getEntity()->setNormaliseNormals(true);