Game Development Community

Anyway to cancel a schedule() call?

by Thomas Wrather · in Torque Game Builder · 05/28/2007 (5:33 pm) · 2 replies

I have script code that calls schedule() to schedule a function to be called at a later time. Is there a call that I can make to cancel the schedule(), so that the function won't be called at the later time?

Thanks.

#1
05/29/2007 (12:21 am)
Yes, there is the cancel() function. Here you can find an overview of the event scheduling functions:

http://tdn.garagegames.com/wiki/TorqueScript_Console_Functions_10
#2
05/29/2007 (4:57 pm)
Thanks!