Quote:
Originally Posted by Crow
Bull****. Both findImg() and showImg() are valid GS2.
|
I didn't say it wasn't. I personally like to see findimg, it's a little more flexible and looks better than doing:
PHP Code:
function comparison() {
// Showimg
showimg(200, "block.png", 20, 20);
changeimgvis(200, 4);
changeimgcolors(200, 1, 0.5, 0, 0.5);
// Findimg
with (findimg(200)) {
image = "block.png";
x = 20;
y = 20;
red = 1;
green = 0.5;
blue = 0;
layer = 4;
}
}