Files
beyond/Assets/Scripts/Invector/vObjectContainerParent.cs
2024-11-20 15:21:28 +01:00

15 lines
283 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Beyond
{
public class vObjectContainerParent : MonoBehaviour
{
private void OnEnable()
{
transform.SetParent(vObjectContainer.root, true);
}
}
}