Comments

Log in with itch.io to leave a comment.

Hello, what is the small change that allows this to work on renpy 8.x?

i think it figured it out for anyone using renpy 8.x, in the lingo code replace time.clock with time.process_time and it's working for me

Correct, Or `time.time()`
Since `time.clock()` was removed in python 3, we have to replace it with somethin else, it often doesn't matter which one, the different is usually the format that the time is returned.