ProjectDDD/Packages/com.distantlands.cozy.core/Runtime/Utility/FXParent.cs
2025-07-08 19:46:31 +09:00

18 lines
319 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace DistantLands.Cozy
{
[ExecuteAlways]
public class FXParent : MonoBehaviour
{
void OnEnable()
{
if (transform.parent == null)
DestroyImmediate(gameObject);
}
}
}