mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Cleanup GroupPage.py
This commit is contained in:
parent
12d80e79e7
commit
f86261ac97
1 changed files with 13 additions and 14 deletions
|
@ -1,35 +1,34 @@
|
|||
from ShtikerPage import ShtikerPage
|
||||
from direct.gui.DirectGui import *
|
||||
from panda3d.core import *
|
||||
from direct.directnotify import DirectNotifyGlobal
|
||||
from pandac.PandaModules import *
|
||||
from direct.gui.DirectGui import *
|
||||
from toontown.toonbase import ToontownGlobals
|
||||
from toontown.toonbase import TTLocalizer
|
||||
from toontown.toonbase import TTLocalizerEnglish
|
||||
from ShtikerPage import ShtikerPage
|
||||
|
||||
class GroupPage(ShtikerPage):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory('GroupPage')
|
||||
|
||||
|
||||
def __init__(self):
|
||||
ShtikerPage.__init__(self)
|
||||
|
||||
|
||||
def load(self):
|
||||
ShtikerPage.load(self)
|
||||
|
||||
|
||||
def unload(self):
|
||||
SktikerPage.unload(self)
|
||||
|
||||
|
||||
def enter(self):
|
||||
ShtikerPage.enter(self)
|
||||
|
||||
|
||||
def exit(self):
|
||||
ShtikerPage.exit(self)
|
||||
|
||||
|
||||
def destroy(self):
|
||||
DirectFrame.destroy(self)
|
||||
|
||||
|
||||
def cleanupDialog(self, value=0):
|
||||
self.confirmDialog.cleanup()
|
||||
def cleanupDialog(self, value=0):
|
||||
self.confirmDialog.cleanup()
|
||||
|
||||
def create(self):
|
||||
self.background = OnscreenImage(parent = render2d, image="phase_3.5/map/toontown_central_tutorial_palette_4amla_1.jpg")
|
||||
def create(self):
|
||||
self.background = OnscreenImage(parent = render2d, image="phase_3.5/map/toontown_central_tutorial_palette_4amla_1.jpg")
|
||||
|
|
Loading…
Reference in a new issue