How to load a sprite from the web

From MiniScript Wiki
Revision as of 14:19, 4 March 2020 by JoeStrout (talk | contribs) (Created page with "To load a sprite from an image on the web, simply pass the URL to http.get, and assign the result to the sprite's .image property. == Example == <ms>clea...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

To load a sprite from an image on the web, simply pass the URL to http.get, and assign the result to the sprite's .image property.

Example

clear
sp = new Sprite
sp.image = http.get("https://miniscript.org/img/Icon.png")
sp.x = 480
sp.y = 320
display(4).sprites.push sp