oldschool-toontown/toontown/hood/GenericAnimatedBuilding.py

11 lines
365 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
from toontown.hood import GenericAnimatedProp
class GenericAnimatedBuilding(GenericAnimatedProp.GenericAnimatedProp):
def __init__(self, node):
GenericAnimatedProp.GenericAnimatedProp.__init__(self, node)
def enter(self):
if base.config.GetBool('buildings-animate', False):
GenericAnimatedProp.GenericAnimatedProp.enter(self)