TG9six fd23ca52fb Civilians, soldiers and character assets added
Civilians, soldiers and character assets added
2025-09-03 06:40:16 +04:00

18 lines
333 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ObjectRig : MonoBehaviour
{
public GameObject childObj;
public GameObject parentObj;
// Start is called before the first frame update
void Start()
{
childObj.transform.parent = parentObj.transform;
}
}