IC Python API:RLPy RPyTimerCallback
From Reallusion Wiki!
Contents
- Main article: Modules.
- Last modified: 04/28/2020
Description
Used to register and recieve the status of the timer callback.
See Also: RPyTimer
Inheritance
RCallback> RPyTimerCallback
1 class MyPyTimerCallback(RLPy.RPyTimerCallback):
2 def __init__(self):
3 RLPy.RPyTimerCallback.__init__(self)
4 def Timeout(self):
5 print ("timeout")
6
7 timer = RLPy.RPyTimer()
8 timer.SetInterval(100)
9 # register callback
10 timer_callback = MyPyTimerCallback()
11 timer.RegisterPyTimerCallback(timer_callback)
12 # start timer
13 timer.Start()