2019-11-02 17:27:54 -05:00
|
|
|
from pandac.PandaModules import *
|
2019-12-30 00:07:56 -06:00
|
|
|
from . import Playground
|
2019-11-02 17:27:54 -05:00
|
|
|
import random
|
|
|
|
|
|
|
|
class DLPlayground(Playground.Playground):
|
|
|
|
|
|
|
|
def __init__(self, loader, parentFSM, doneEvent):
|
|
|
|
Playground.Playground.__init__(self, loader, parentFSM, doneEvent)
|
|
|
|
|
|
|
|
def showPaths(self):
|
|
|
|
from toontown.classicchars import CCharPaths
|
|
|
|
from toontown.toonbase import TTLocalizer
|
|
|
|
self.showPathPoints(CCharPaths.getPaths(TTLocalizer.Donald))
|