Hallo guys
I am going to make a extension to the scripting in Unity, for example in C#, if you want to change only the x position you would need to do this:
transform.position = new Vector3(5,transform.position.y,transform.position.z);
But with my extension you would only need to do the following:
transform.SetX(5);
So what I would like you to do is to write what functions you would like to have in Unity? It can be anything you think of, nothing is too small or too big.