PyBullet fileIOPlugin: don't add equal fileIO interface twice (based on identical fileIOType and pathPrefix)
loadBullet goes through fileIOPlugin
This commit is contained in:
@@ -3,6 +3,15 @@
|
||||
|
||||
struct CommonFileIOInterface
|
||||
{
|
||||
int m_fileIOType;
|
||||
const char* m_pathPrefix;
|
||||
|
||||
CommonFileIOInterface(int fileIOType, const char* pathPrefix)
|
||||
:m_fileIOType(fileIOType),
|
||||
m_pathPrefix(pathPrefix)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~CommonFileIOInterface()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user