path : string
The value of path, if set, is placed before any relative file path given. For example: load.path = "images/sprites/";
load.image("ball", "ball.png");
load.image("tree", "level1/oaktree.png");
load.image("boom", "http://server.com/explode.png"); Would load the ball file from images/sprites/ball.png and the tree fromimages/sprites/level1/oaktree.png but the file boom would load from the URLgiven as it's an absolute URL. Please note that the path is added before the filename but af