Bob Bello
0
Q:

how to set a transform equal to something unity

using UnityEngine;public class Example : MonoBehaviour
{
    // Moves all transform children 10 units upwards!
    void Start()
    {
        foreach (Transform child in transform)
        {
            child.position += Vector3.up * 10.0f;
        }
    }
}
2
public Transform tr; //make ref. in inspector window

tr.position = new Vector2(x, y);
1

New to Communities?

Join the community