OneShotOneKill/Assets/Script/Addressable/AddressableReleaseSelf.cs

9 lines
160 B
C#
Raw Normal View History

2026-01-07 21:27:42 +00:00
using UnityEngine;
public class AddressableReleaseSelf : MonoBehaviour
{
void OnDestroy()
{
//Addressables.ReleaseInstance(gameObject);
}
}