Skip to content

Instantly share code, notes, and snippets.

Created March 27, 2014 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/bb414aff57d823c50ede to your computer and use it in GitHub Desktop.
Save anonymous/bb414aff57d823c50ede to your computer and use it in GitHub Desktop.
Hello World in Kablooie
if (true)
{
img label = img.Label;
label.SetTextWithKnownChars("Hello, world!");
float durationSec = 0.4;
label.SetAnimationAbs(Alpha, 0, 1, durationSec, EaseIn);
// The following line would generate a compile error (type mismatch).
//
// duractionSec = "test";
//
}
// Another compile error (variable not defined/in scope here)
//
// label = img.OtherLabel;
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment