Skip to content

Instantly share code, notes, and snippets.

@SnugglePilot
Last active December 25, 2015 20:29
Show Gist options
  • Save SnugglePilot/7035270 to your computer and use it in GitHub Desktop.
Save SnugglePilot/7035270 to your computer and use it in GitHub Desktop.
var s:Sprite;
function show() {
s = new Sprite();
addChild(new Bitmap(Assets.getBitmapData("sadTrombone.png")));
}
function kill() {
removeChild(s);
s = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment