diff --git a/direct/src/level/EntityCreator.py b/direct/src/level/EntityCreator.py index 7175136413..06b278a749 100755 --- a/direct/src/level/EntityCreator.py +++ b/direct/src/level/EntityCreator.py @@ -7,6 +7,7 @@ import DirectNotifyGlobal import EditMgr import EntrancePoint import LevelMgr +import LogicGate import ZoneEntity import ModelEntity import PathEntity @@ -34,7 +35,7 @@ class EntityCreator(EntityCreatorBase.EntityCreatorBase): 'editMgr': EditMgr.EditMgr, 'entrancePoint': EntrancePoint.EntrancePoint, 'levelMgr': LevelMgr.LevelMgr, - 'logicGate': nothing, + 'logicGate': LogicGate.LogicGate, 'model' : ModelEntity.ModelEntity, 'nodepath': BasicEntities.NodePathEntity, 'path' : PathEntity.PathEntity, diff --git a/direct/src/level/LogicGate.py b/direct/src/level/LogicGate.py new file mode 100755 index 0000000000..77e0f9d322 --- /dev/null +++ b/direct/src/level/LogicGate.py @@ -0,0 +1,8 @@ + + +import LogicGateAI + +class LogicGate(LogicGateAI.LogicGateAI): + """ + """ + pass