public class Temp : MonoBehaviour
{
private List<Container> _list;
private void Awake()
{
_list = new List<Container> {new Container()};
}
private void Start()
{
AddListenerByOut(0, OnTest1);
AddListenerByOut(0, OnTest2);
AddListenerByOut(0, OnTest3);
Invoke(0);
}
private void AddListener(int index, Action<Entity> action)
{
ref var temp = ref Find(index);
temp += action;
}
private void AddListenerByRef(int index, Action<Entity> action)
{
Action<Entity> value = null;
FindRef(index, ref value);
ref var temp = ref value;
temp += action;
}
private void AddListenerByOut(int index, Action<Entity> action)
{
FindOut(index, out var value);
ref var temp = ref value;
temp += action;
}
private void Invoke(int index)
{
_list[index].Action.Invoke(new Entity());
}
private ref Action<Entity> Find(int index)
{
return ref _list[index].Action;
}
private void FindRef(int index, ref Action<Entity> value)
{
value = ref _list[index].Action;
}
private void FindOut(int index, out Action<Entity> value)
{
value = null;
value = ref _list[index].Action;
}
private void OnTest1(Entity entity){Debug.Log("Test1");}
private void OnTest2(Entity entity){Debug.Log("Test2");}
private void OnTest3(Entity entity){Debug.Log("Test3");}
}
public class Container
{
public Action<Entity> Action;
}
public class Entity
{
}
На сколько я понимаю в данном случае unity editor не знает о существовании int health в классе HealthComponent. Но если написать Debug.Log(HealthComponent.health) данный инт будет единовременно сереализован и выведен эдитором. Если мы говорим о случае когда [NonSerialized] нет, то unity scripting сереализует любое изменение данных, editor видит именение и показыавет их.
P.S Это только мое представление как это устроено, исходят из информации которой я владею.