07-18-2019, 04:08 PM
You just need to set the offsets of the layers, for instance, to stack the layers in a diagonal:
Plenty of example Python plugins here. If any questions about them, just ask below.
Code:
for i,l in enumerate(image.layers):
l.set_offsets(i*stepSize,i*stepSize)
Plenty of example Python plugins here. If any questions about them, just ask below.