Poodletooth-iLand/toontown/shtiker/GroupPage.py

35 lines
946 B
Python
Raw Normal View History

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