diff --git a/SetParent.cs b/SetParent.cs new file mode 100644 index 0000000..79cd902 --- /dev/null +++ b/SetParent.cs @@ -0,0 +1,21 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class SetParent : MonoBehaviour { + + private void Awake() + { + this.gameObject.transform.SetParent(Camera.main.transform); + } + + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { + + } +}