I've been trying to learn Unity and pretty soon in the tutorials I've found this:
private Rigidbody rb;
void Start ()
{
rb = GetComponent<Rigidbody>();
}
I'm not knowledgeable with C# syntax so what I really would like to understand is this function<object>()
syntax.
Thx