10 lines
360 B
Python
10 lines
360 B
Python
from toontown.hood import GenericAnimatedProp
|
|
|
|
class GenericAnimatedBuilding(GenericAnimatedProp.GenericAnimatedProp):
|
|
|
|
def __init__(self, node):
|
|
GenericAnimatedProp.GenericAnimatedProp.__init__(self, node)
|
|
|
|
def enter(self):
|
|
if config.GetBool('buildings-animate', False):
|
|
GenericAnimatedProp.GenericAnimatedProp.enter(self)
|