oldschool-toontown/otp/avatar/Emote.py

22 lines
478 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
from otp.otpbase import OTPLocalizer
class Emote:
EmoteClear = -1
EmoteEnableStateChanged = 'EmoteEnableStateChanged'
def __init__(self):
self.emoteFunc = None
return
def isEnabled(self, index):
2020-01-08 19:59:02 -06:00
if isinstance(index, str):
2019-11-02 17:27:54 -05:00
index = OTPLocalizer.EmoteFuncDict[index]
if self.emoteFunc == None:
return 0
elif self.emoteFunc[index][1] == 0:
return 1
return 0
globalEmote = None