How to use python (maya) multithreading
I've been looking at examples from other people but I can't seem to get it to work properly. It'll either use a single core, or basically freeze up maya if given too much to process, but I never seem to get more than one core working at once. So for example, this is kind of what I'd like it to do, on a very basic level. Mainly just let each loop run simultaneously on a different processor with the different values (in this case, the two values would use two processors) mylist = [50, 100, 23] newvalue = [50,51] for j in range(0, len(newvalue)): exists = False for i in range(0, len(mylist)):