Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marchbold/7f69d108757d6ec9ce6e24471b3fc84d to your computer and use it in GitHub Desktop.

Select an option

Save marchbold/7f69d108757d6ec9ce6e24471b3fc84d to your computer and use it in GitHub Desktop.
Performance tuning using the Year Class from the Application ANE
var year:int = Application.service.device.yearClass;
if (year >= 2013)
{
// Do advanced animation
}
else if (year > 2010)
{
// Do simple animation
}
else
{
// Phone too slow, don't do any animations
}
// com.distriqt.Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment