Fix noise_gen

This commit is contained in:
luboslenco 2018-11-18 21:57:08 +01:00
parent a7aa70e440
commit 6f6ff24f12

View file

@ -1,3 +1,6 @@
import bpy
img = bpy.data.images.new(name="img", width=256, height=256)
for x in range(256):
for y in range(256):
x2 = (x - 37) & 255