mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
13 lines
444 B
Python
13 lines
444 B
Python
|
from toontown.toonbase import ToontownGlobals
|
||
|
|
||
|
def calcPropType(node):
|
||
|
propType = ToontownGlobals.AnimPropTypes.Unknown
|
||
|
fullString = str(node)
|
||
|
if 'hydrant' in fullString:
|
||
|
propType = ToontownGlobals.AnimPropTypes.Hydrant
|
||
|
elif 'trashcan' in fullString:
|
||
|
propType = ToontownGlobals.AnimPropTypes.Trashcan
|
||
|
elif 'mailbox' in fullString:
|
||
|
propType = ToontownGlobals.AnimPropTypes.Mailbox
|
||
|
return propType
|