How do I make it so the character sprite blends with the background?
Very much appreciate any help given.
heres the code
import java.awt.*;
import java.awt.event.*;
import acm.graphics.*;
import acm.program.*;
public class blueBall extends GraphicsProgram{
public void run(){
GImage block = new GImage("block.jpg");
GImage bg = new GImage("bg.png");
GImage mario =new GImage ("mario2.png");
add(block,0,200);
add(bg);
add(mario,100,171);
}
}