mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
19 lines
582 B
Python
19 lines
582 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
from direct.distributed.ClockDelta import *
|
||
|
import time
|
||
|
|
||
|
class DistributedTimerAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedTimerAI")
|
||
|
|
||
|
def __init__(self, air):
|
||
|
DistributedObjectAI.__init__(self, air)
|
||
|
self.setStartTime(globalClockDelta.getRealNetworkTime(bits = 32))
|
||
|
|
||
|
def setStartTime(self, time):
|
||
|
self.startTime = time
|
||
|
|
||
|
def getStartTime(self):
|
||
|
return self.startTime
|
||
|
|