removed flags from loadURDF command. The flags are already available in m_data->m_flags in BulletUrdfImporter.cpp

This commit is contained in:
erwincoumans
2018-10-02 08:39:47 -07:00
parent 0f8b8388a6
commit 8aff1fbd49
5 changed files with 7 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ class URDFImporterInterface
public:
virtual ~URDFImporterInterface() {}
virtual bool loadURDF(const char* fileName, bool forceFixedBase = false, int flags = 0) = 0;
virtual bool loadURDF(const char* fileName, bool forceFixedBase = false) = 0;
virtual bool loadSDF(const char* fileName, bool forceFixedBase = false) { return false; }