This commit is contained in:
wsh
2025-02-21 11:57:09 +09:00
parent 64352f5f46
commit 912a242bae
112 changed files with 934 additions and 244 deletions

View File

@@ -1,7 +1,7 @@
using System;
using UnityEngine;
using UnityEngineInternal;
using WI;
using XRLib;
using Object = UnityEngine.Object;
[Serializable]
@@ -111,6 +111,6 @@ public partial class MonoBehaviour : UnityEngine.MonoBehaviour
protected virtual void OnDestroy()
{
if (this.GetType() != typeof(TrashBehaviour))
WI.Core.Unregist(this);
XRLib.Core.Unregist(this);
}
}

View File

@@ -1,4 +1,4 @@
namespace WI
namespace XRLib
{
public partial class TrashBehaviour : UnityEngine.MonoBehaviour
{