39 lines
411 B
JavaScript
39 lines
411 B
JavaScript
|
|
// Handle starting the pre-load animation
|
|
var page_preloader = new Preloader();
|
|
page_preloader.show(true);
|
|
|
|
images = [
|
|
""
|
|
];
|
|
|
|
audio = [
|
|
""
|
|
];
|
|
|
|
function update() {
|
|
|
|
}
|
|
|
|
function input() {
|
|
|
|
}
|
|
|
|
function draw() {
|
|
|
|
}
|
|
|
|
function absoluteDraw() {
|
|
|
|
}
|
|
|
|
function onAssetsLoaded() {
|
|
|
|
|
|
}
|
|
|
|
setup(60);
|
|
|
|
// Hide the preloader
|
|
// This should actually run after all assets have been downloaded
|
|
page_preloader.hide(false); |