mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
25 lines
783 B
Python
25 lines
783 B
Python
|
from direct.task.Task import Task
|
||
|
import random
|
||
|
|
||
|
from toontown.classicchars import CCharPaths
|
||
|
from toontown.safezone import Playground
|
||
|
from toontown.toonbase import TTLocalizer
|
||
|
|
||
|
|
||
|
class TTPlayground(Playground.Playground):
|
||
|
def enter(self, requestStatus):
|
||
|
Playground.Playground.enter(self, requestStatus)
|
||
|
taskMgr.doMethodLater(1, self.__birds, 'TT-birds')
|
||
|
|
||
|
def exit(self):
|
||
|
Playground.Playground.exit(self)
|
||
|
taskMgr.remove('TT-birds')
|
||
|
|
||
|
def showPaths(self):
|
||
|
self.showPathPoints(CCharPaths.getPaths(TTLocalizer.Mickey))
|
||
|
|
||
|
def __birds(self, task):
|
||
|
base.playSfx(random.choice(self.loader.birdSound))
|
||
|
time = random.random() * 20.0 + 1
|
||
|
taskMgr.doMethodLater(time, self.__birds, 'TT-birds')
|
||
|
return Task.done
|