我试图在p5中更改屏幕外图形缓冲区的不透明度,但无法弄清楚。
考虑:
var pg = createGraphics(...)
var image = loadImage(...)
tint(255, 50)
image(image, 0, 0) <----- this works
image(pg, 0, 0) <----- but this doesn't
tint(255, x)
应该保持着色不变并将不透明度设置为x
,但似乎没有效果。在图像上工作正常,但是......我错过了什么?