mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
26 lines
837 B
Python
26 lines
837 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
from direct.distributed.ClockDelta import *
|
|
from direct.fsm.FSM import FSM
|
|
import time
|
|
|
|
class DistributedPolarPlaceEffectMgrAI(DistributedObjectAI, FSM):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPolarPlaceEffectMgrAI")
|
|
|
|
def __init__(self, air):
|
|
DistributedObjectAI.__init__(self, air)
|
|
FSM.__init__(self, 'ResistanceFSM')
|
|
self.air = air
|
|
|
|
def enterOff(self):
|
|
self.requestDelete()
|
|
|
|
def addPolarPlaceEffect(self):
|
|
avId = self.air.getAvatarIdFromSender()
|
|
av = self.air.doId2do.get(avId)
|
|
|
|
if not av:
|
|
return
|
|
|
|
expireTime = int((time.time()/60) + 0.5) + 60
|
|
av.b_setCheesyEffect(13, 3000, expireTime)
|