Skip to content

Instantly share code, notes, and snippets.

@whoiscarlo
whoiscarlo / max_MultiThread.ms
Created September 23, 2014 19:00
How to run Multi Thread in Maxscript, although, currently it locks up the viewport =(
fn bkgWrkr =
( python.execute("
import thread;
import time;
def crap():
for i in range( 10):
print 'Love', i
print time.strftime( '%c')
time.sleep( 5)