The tv_Line, tv_FastLine and tv_ZLine commands don't seem to be working in tvpaint 9.5?
All my scripts using these commands work fine in version 8 & 9, but don't draw anything at all in 9.5. For example a very simple script:
Code: Select all
Param None
y1=900+RND(200)
dy=RND(5)-RND(5)
x2=0
x=RND(12)+2
for x1=1 to 1200
y2=y1
y1=y1+dy
dy=RND(x)-RND(x)
tv_Line x1 y1 x2 y2 0
x2=x1
end
Is there anything I can do about that?
best wishes, Wouter