예제 #1
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
     self.maxRange = 25.0
     self.nodeList = []
     self.calculatedTargets = []
     self.maxNodes = 5
     self.findTeam = 0
예제 #2
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
     self.maxRange = 25.0
     self.nodeList = []
     self.calculatedTargets = []
     self.maxNodes = 5
     self.findTeam = 0
예제 #3
0
 def load(self, pSection, prereqs=None):
     """
     This method loads a list of node names, specified by "Node" tags from
     an XML data section.
     """
     self.nodeList = pSection.readStrings('Node')
     return ParticleSubSystem.load(self, pSection)
예제 #4
0
 def load(self, pSection, prereqs = None):
     """
     This method loads a list of node names, specified by "Node" tags from
     an XML data section.
     """
     self.nodeList = pSection.readStrings('Node')
     return ParticleSubSystem.load(self, pSection)
예제 #5
0
 def load(self, pSection, prereqs = None):
     self.nodeList = pSection.readStrings('Node')
     self.maxNodes = pSection.readFloat('maxNodes', 5.0)
     self.maxRange = pSection.readFloat('maxRange', 25.0)
     self.findTeam = pSection.readInt('findTeam', 0)
     return ParticleSubSystem.load(self, pSection)
예제 #6
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
     self.nodeList = []
예제 #7
0
 def load(self, pSection, prereqs = None):
     self.nodeList = pSection.readStrings('Node')
     self.maxNodes = pSection.readFloat('maxNodes', 5.0)
     self.maxRange = pSection.readFloat('maxRange', 25.0)
     self.findTeam = pSection.readInt('findTeam', 0)
     return ParticleSubSystem.load(self, pSection)
예제 #8
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
예제 #9
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
예제 #10
0
 def __init__(self):
     ParticleSubSystem.__init__(self)
     self.nodeList = []