Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a tick update in python

lasttick = -0.01
tick = float(0.00)
while True:
  tick = tick + float(0.01)
  if tick > lasttick:
    #Your tick update here:
    print(tick) #Prints the tick
  lasttick = lasttick + 0.01
Source by bogdanelsandu.wixsite.com #
 
PREVIOUS NEXT
Tagged: #tick #update #python
ADD COMMENT
Topic
Name
6+4 =