00001 ''' 00002 Anoria (c) Gsk 2010 00003 ''' 00004 00005 import BigWorld 00006 00007 class SpaceLoader( BigWorld.Entity ): 00008 def __init__( self ): 00009 # Create the geometry mapping for this space. 00010 # this maps the set of .chunk files we want into the space 00011 # self.geometry has been set during base creation by the personality script 00012 if self.geometry: 00013 BigWorld.addSpaceGeometryMapping( 00014 self.spaceID, None, self.geometry ) 00015
1.7.1