(i)
| 321 | arg_count = len(inspect.signature(fn).parameters) |
| 322 | |
| 323 | def fe(i): |
| 324 | duration = bpy.context.scene.frame_end - bpy.context.scene.frame_start |
| 325 | fc = bpy.context.scene.frame_current |
| 326 | fa = (fc+i)%duration |
| 327 | return fa/duration |
| 328 | |
| 329 | funcs = ModifyFunctions(fe) |
| 330 |