toontown-just-works/toontown/safezone/DGPlayground.py

19 lines
595 B
Python
Raw Normal View History

2024-07-07 18:08:39 -05:00
from direct.task import Task
from toontown.safezone import Playground
import random
class DGPlayground(Playground.Playground):
def enter(self, requestStatus):
Playground.Playground.enter(self, requestStatus)
taskMgr.doMethodLater(1, self.__birds, 'DG-birds')
def exit(self):
Playground.Playground.exit(self)
taskMgr.remove('DG-birds')
def __birds(self, task):
base.playSfx(random.choice(self.loader.birdSound))
time = random.random() * 20.0 + 1
taskMgr.doMethodLater(time, self.__birds, 'DG-birds')
return Task.done