Poodletooth-iLand/toontown/shtiker/GroupPage.py

35 lines
946 B
Python
Raw Normal View History

2015-05-26 21:21:38 -05:00
from panda3d.core import *
2015-05-26 20:03:14 -05:00
from direct.directnotify import DirectNotifyGlobal
2015-05-26 21:21:38 -05:00
from direct.gui.DirectGui import *
2015-05-26 20:03:14 -05:00
from toontown.toonbase import ToontownGlobals
from toontown.toonbase import TTLocalizer
from toontown.toonbase import TTLocalizerEnglish
2015-05-26 21:21:38 -05:00
from ShtikerPage import ShtikerPage
2015-05-26 19:45:58 -05:00
2015-05-26 20:03:14 -05:00
class GroupPage(ShtikerPage):
notify = DirectNotifyGlobal.directNotify.newCategory('GroupPage')
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def __init__(self):
ShtikerPage.__init__(self)
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def load(self):
ShtikerPage.load(self)
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def unload(self):
SktikerPage.unload(self)
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def enter(self):
ShtikerPage.enter(self)
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def exit(self):
ShtikerPage.exit(self)
2015-05-26 21:21:38 -05:00
2015-05-26 20:03:14 -05:00
def destroy(self):
DirectFrame.destroy(self)
2015-05-26 20:37:20 -05:00
2015-05-26 21:21:38 -05:00
def cleanupDialog(self, value=0):
self.confirmDialog.cleanup()
2015-05-26 20:37:20 -05:00
2015-05-26 21:21:38 -05:00
def create(self):
self.background = OnscreenImage(parent = render2d, image="phase_3.5/map/toontown_central_tutorial_palette_4amla_1.jpg")