added entityGroup

This commit is contained in:
Darren Ranalli 2003-11-19 23:59:11 +00:00
parent 2e3f848e85
commit ce927a1cc9
3 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class EntityCreator(EntityCreatorBase.EntityCreatorBase):
self.privRegisterTypes({ self.privRegisterTypes({
'cutScene': CutScene.CutScene, 'cutScene': CutScene.CutScene,
'editMgr': EditMgr.EditMgr, 'editMgr': EditMgr.EditMgr,
'entityGroup': nothing,
'entrancePoint': EntrancePoint.EntrancePoint, 'entrancePoint': EntrancePoint.EntrancePoint,
'levelMgr': LevelMgr.LevelMgr, 'levelMgr': LevelMgr.LevelMgr,
'logicGate': LogicGate.LogicGate, 'logicGate': LogicGate.LogicGate,

View File

@ -46,6 +46,7 @@ class EntityCreatorAI(EntityCreatorBase.EntityCreatorBase):
self.privRegisterTypes({ self.privRegisterTypes({
'cutScene': nothing, 'cutScene': nothing,
'editMgr': Functor(cLE, EditMgrAI.EditMgrAI), 'editMgr': Functor(cLE, EditMgrAI.EditMgrAI),
'entityGroup': nothing,
'entrancePoint': nothing, 'entrancePoint': nothing,
'levelMgr': Functor(cLE, LevelMgrAI.LevelMgrAI), 'levelMgr': Functor(cLE, LevelMgrAI.LevelMgrAI),
'logicGate': Functor(cLE, LogicGateAI.LogicGateAI), 'logicGate': Functor(cLE, LogicGateAI.LogicGateAI),

View File

@ -121,3 +121,6 @@ class VisibilityExtender(Entity):
class PropSpinner(Entity): class PropSpinner(Entity):
type = 'propSpinner' type = 'propSpinner'
class EntityGroup(Entity):
type = 'entityGroup'