You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug.Assert(_value != null, $"[LazyService<{typeof(T)}>] Could not get service. Either it does not exist in any loaded scene, or it has not been subscribed to the ServiceLocator. This could happen if Value is called before OnEnable or the objet that holds the Service has been disabled");
return _value;
}
set
{
_value = value;
}
}
public static implicit operator T(LazyService<T> lazy)