Skip to content

Instantly share code, notes, and snippets.

@washer
Created October 30, 2017 16:36
Show Gist options
  • Save washer/eedd49f9e616bf98020e1b75e635fe5f to your computer and use it in GitHub Desktop.
Save washer/eedd49f9e616bf98020e1b75e635fe5f to your computer and use it in GitHub Desktop.
this.loadImages = function(callback) {
// Load images to list
for (let i = 0; i < this.imgCount; i++) {
this.images[i] = loadImage(this.path + 'brain_' + str(i) + '.jpg');
}
callback();
};
// Final setup of object
this.loadImages(() => {
// Do stuff afterwards
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment