mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
added entityGroup
This commit is contained in:
parent
2e3f848e85
commit
ce927a1cc9
@ -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,
|
||||||
|
@ -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),
|
||||||
|
@ -121,3 +121,6 @@ class VisibilityExtender(Entity):
|
|||||||
|
|
||||||
class PropSpinner(Entity):
|
class PropSpinner(Entity):
|
||||||
type = 'propSpinner'
|
type = 'propSpinner'
|
||||||
|
|
||||||
|
class EntityGroup(Entity):
|
||||||
|
type = 'entityGroup'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user