Skip to content

Instantly share code, notes, and snippets.

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 lindsaygcox/90a6356edcbb163c5b100dd88d1d638a to your computer and use it in GitHub Desktop.
Save lindsaygcox/90a6356edcbb163c5b100dd88d1d638a to your computer and use it in GitHub Desktop.
private BoxCollider[] _allColliders;
private void Start()
{
_allColliders = FindObjectsOfType<BoxCollider>();
}
private void OnTriggerEnter(Collider other)
{
DoAThing(_allColliders);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment