mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
43 lines
862 B
Python
43 lines
862 B
Python
|
try:
|
||
|
from panda3dCoreModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dPhysicsModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dFxModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dDirectModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dSkelModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dEggModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|
||
|
try:
|
||
|
from panda3dOdeModules import *
|
||
|
except ImportError, err:
|
||
|
if "DLL loader cannot find" not in str(err):
|
||
|
raise
|
||
|
|