Jump to content

Timedelay in python?


Recommended Posts

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Just use the OnUpdate built in function, example:

 

def SetSleepFunction(self, time):
	self.function_sleep_time = app.GetGlobalTimeStamp() + time
    
def OnUpdate(self):
	if self.function_sleep_time and self.function_sleep_time < app.GetGlobalTimeStamp():
		self.function_sleep_time = None
        	# Your action

 

I write the code very fast for you understand the idea, but you need to declare the variable also and adapt it for you

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.