Skip to content

Instantly share code, notes, and snippets.

@martywallace
Last active August 29, 2015 14:19
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 martywallace/5bb820800a258bf22669 to your computer and use it in GitHub Desktop.
Save martywallace/5bb820800a258bf22669 to your computer and use it in GitHub Desktop.
Collision detection
for each (var a:Asteroid in asteroids)
{
for each (var b:Asteroid in asteroids)
{
if (a !== b && a.hitTestObject(b))
{
// Handle collision.
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment