|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
public class test : MonoBehaviour
|
|
{
|
|
public GameObject game;
|
|
public GameObject gg;
|
|
private void Start()
|
|
{
|
|
game.transform.SetParent(gg.transform);
|
|
game.transform.localPosition=Vector3.zero;
|
|
}
|
|
}
|
|
} |