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