Variable of Type Transform

If I have a variable of type “Transform”, what kinds of game objects can be connected to it?

Anything that has a Transform component (which is all GameObjects since Transform is mandatory for those).

It’s really unclear what do you want to know. But as for right now il say any x) Its just mater of converting gameObject ↔ transform like so:

transform = gameObject.transform;

or

gameObject = transform.gameObject;

so you see transform ii not really solid var. :wink:

It will targets the Transform component of what it will attached to , although you must attach a GameObject or any thing that attachable to that !