当前位置: 首页>>代码示例>>Python>>正文


Python CountryClubRoomSpecs类代码示例

本文整理汇总了Python中CountryClubRoomSpecs的典型用法代码示例。如果您正苦于以下问题:Python CountryClubRoomSpecs类的具体用法?Python CountryClubRoomSpecs怎么用?Python CountryClubRoomSpecs使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了CountryClubRoomSpecs类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: levelAnnounceGenerate

 def levelAnnounceGenerate(self):
     self.notify.debug('levelAnnounceGenerate')
     DistributedLevel.DistributedLevel.levelAnnounceGenerate(self)
     specModule = CountryClubRoomSpecs.getCountryClubRoomSpecModule(self.roomId)
     roomSpec = LevelSpec.LevelSpec(specModule)
     if __dev__:
         typeReg = self.getCountryClubEntityTypeReg()
         roomSpec.setEntityTypeReg(typeReg)
     DistributedLevel.DistributedLevel.initializeLevel(self, roomSpec)
开发者ID:nate97,项目名称:src,代码行数:9,代码来源:DistributedCountryClubRoom.py

示例2: getReserveCogSpec

 def getReserveCogSpec(self, cogId):
     cogSpecModule = CountryClubRoomSpecs.getCogSpecModule(self.roomId)
     return cogSpecModule.ReserveCogData[cogId]
开发者ID:nate97,项目名称:src,代码行数:3,代码来源:DistributedCountryClubRoom.py

示例3: getBattleCellSpec

 def getBattleCellSpec(self, battleCellId):
     cogSpecModule = CountryClubRoomSpecs.getCogSpecModule(self.roomId)
     return cogSpecModule.BattleCells[battleCellId]
开发者ID:nate97,项目名称:src,代码行数:3,代码来源:DistributedCountryClubRoom.py

示例4: levelAnnounceGenerate

 def levelAnnounceGenerate(self):
     self.notify.debug('levelAnnounceGenerate')
     DistributedLevel.DistributedLevel.levelAnnounceGenerate(self)
     specModule = CountryClubRoomSpecs.getCountryClubRoomSpecModule(self.roomId)
     roomSpec = LevelSpec.LevelSpec(specModule)
     DistributedLevel.DistributedLevel.initializeLevel(self, roomSpec)
开发者ID:BmanGames,项目名称:ToontownStride,代码行数:6,代码来源:DistributedCountryClubRoom.py


注:本文中的CountryClubRoomSpecs类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。