Initial Commit
This commit is contained in:
commit
ee5c2f922d
2255 changed files with 547750 additions and 0 deletions
25
Assets/Scripts/DestroyOnlyGameObjectEntity.cs
Normal file
25
Assets/Scripts/DestroyOnlyGameObjectEntity.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
using Unity.Entities;
|
||||
|
||||
namespace DefaultNamespace
|
||||
{
|
||||
public class DestroyOnlyGameObjectEntity : GameObjectEntity
|
||||
{
|
||||
public void Awake()
|
||||
{
|
||||
base.OnEnable();
|
||||
}
|
||||
|
||||
public void OnEnable()
|
||||
{
|
||||
}
|
||||
|
||||
public void OnDisable()
|
||||
{
|
||||
}
|
||||
|
||||
public void OnDestroy()
|
||||
{
|
||||
base.OnDisable();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue