pmst
pmst copied to clipboard
Small glitch
trafficstars
Just working through the instructions. I got...
File "/Users/tomsmith/pmst-master/tools/pointillism-spritesheet.py", line 9, in <module>
for h in range(0,30,2)+range(100,130,2):
fixed with...
joinedlist = range(0,30,2)+range(100,130,2)
for h in joinedlist:
Oh nope... TypeError: unsupported operand type(s) for +: 'range' and 'range'
Hi, I think the script is written for python 2, quick fix for python 3 would be
list(range(0,30,2))+list(range(100,130,2))