mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-04 13:45:04 +08:00
chore: delete dead code (#470)
This commit is contained in:
parent
55e662be66
commit
8b60cdb6fc
@ -36,18 +36,6 @@ namespace nadena.dev.modular_avatar.core
|
|||||||
{
|
{
|
||||||
internal static event Action OnChangeAction;
|
internal static event Action OnChangeAction;
|
||||||
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
if (!RuntimeUtil.isPlaying || this == null) return;
|
|
||||||
RuntimeUtil.OnDemandProcessAvatar(RuntimeUtil.OnDemandSource.Awake, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Start()
|
|
||||||
{
|
|
||||||
if (!RuntimeUtil.isPlaying || this == null) return;
|
|
||||||
RuntimeUtil.OnDemandProcessAvatar(RuntimeUtil.OnDemandSource.Start, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected virtual void OnValidate()
|
protected virtual void OnValidate()
|
||||||
{
|
{
|
||||||
if (RuntimeUtil.isPlaying) return;
|
if (RuntimeUtil.isPlaying) return;
|
||||||
|
@ -46,16 +46,6 @@ namespace nadena.dev.modular_avatar.core
|
|||||||
OnMenuInvalidate?.Invoke();
|
OnMenuInvalidate?.Invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum OnDemandSource
|
|
||||||
{
|
|
||||||
Awake,
|
|
||||||
Start
|
|
||||||
}
|
|
||||||
|
|
||||||
public delegate void OnDemandProcessAvatarDelegate(OnDemandSource source, MonoBehaviour component);
|
|
||||||
|
|
||||||
public static OnDemandProcessAvatarDelegate OnDemandProcessAvatar = (_m, _c) => { };
|
|
||||||
|
|
||||||
internal static T GetOrAddComponent<T>(this Component self) where T : Component
|
internal static T GetOrAddComponent<T>(this Component self) where T : Component
|
||||||
{
|
{
|
||||||
var component = self.GetComponent<T>();
|
var component = self.GetComponent<T>();
|
||||||
|
Loading…
Reference in New Issue
Block a user