15 lines
283 B
C#
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);
|
|
}
|
|
}
|
|
}
|