13 lines
445 B
Python
13 lines
445 B
Python
from pandac.PandaModules import *
|
|
from . import Playground
|
|
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))
|