Creates an effect from Url
const octopus = new Effect("effects/octopus.zip")
Creates an effect from Blob
const file = $("#file-upload").files[0] // File is subclass of Blob const octopus = new Effect(file)
Creates an effect by preloading it from Url
const octopus = await Resource.preload("effects/Octopus.zip")
Creates an array of effects by preloading them from a list of Urls
const [octopus, policeman] = await Effect.preload(["effects/Octopus.zip", "effects/Policeman.zip"])
Creates an effect from Url