Apologies if this has been covered before but I couldn’t find an answer anywhere.
Does Unity support threading in Python?
I’ve got a PySide2 interface which relies on a bunch of web queries and I’m trying to move those off the main thread so that the UI doesn’t freeze.
Using QThread I find that the thread never executes and when using QRunnable the editor crashes. Just wondering if I’ve missed something obvious somewhere or whether it’s just not supported yet.
Cheers,
Mark