mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
11 lines
365 B
Python
11 lines
365 B
Python
|
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)
|