nightward/Assets/Scripts/Util/AddressableReleaseSelf.cs

9 lines
160 B
C#
Raw Normal View History

2025-11-25 19:58:58 +00:00
using UnityEngine;
public class AddressableReleaseSelf : MonoBehaviour
{
void OnDestroy()
{
//Addressables.ReleaseInstance(gameObject);
}
}