Hi,
When I type into Visual Studio
private void OnCollisionEnter2D(
Visual Studio then automatically fills out the rest of the method as:
private void OnCollisionEnter2D(Collision2D collision)
This is different to the tutorial in which it seems t autocomplete as:
private void OnCollisionEnter2D(Collision2D other)
I am curious as to why my VS might autocomplete this differently to the tutorial, and what the difference between collision and other is here?
Any help greatly appreciated, thanks