(self, timeIdx)
| 1374 | |
| 1375 | @exportRpc("pv.time.index.set") |
| 1376 | def setTimeStep(self, timeIdx): |
| 1377 | anim = simple.GetAnimationScene() |
| 1378 | anim.TimeKeeper.Time = anim.TimeKeeper.TimestepValues[timeIdx] |
| 1379 | |
| 1380 | self.getApplication().InvokeEvent("UpdateEvent") |
| 1381 | |
| 1382 | return anim.TimeKeeper.Time |
| 1383 | |
| 1384 | @exportRpc("pv.time.index.get") |
| 1385 | def getTimeStep(self): |
nothing calls this directly
no test coverage detected