我對Arduino處理3.0有問題。它總是出現這樣的錯誤:我在處理3.0 Arduino中出錯
"The size of this sketch could not be determined from your code. Use only number (not variables) for the size() comand. Read the size() reference for more details"
源代碼here。
我對Arduino處理3.0有問題。它總是出現這樣的錯誤:我在處理3.0 Arduino中出錯
"The size of this sketch could not be determined from your code. Use only number (not variables) for the size() comand. Read the size() reference for more details"
源代碼here。
在處理3.0你需要指定大小的值(而不是一個計算的變量):
size(1000, 500, P2D);
如果它是絕對至關重要使用一個變量,可以考慮使用處理的舊版本像2.2 .1
所以,這樣的事情:
size(1, 1);
surface.setResizable(true);
surface.setSize(bgimage.width, bgimage.height);
// and when you're ready to actually load the image
image(bgimage, 0, 0, width, height);