So, I have a UnityEvent<int> declared like this:
public UnityEvent<int> onValueChanged;
and inside the Unity inspector, i want to pass the integer parameter of the event to its listener like in this picture. Is there a way to do this? I know it is possible to do in code using delegates but is there a way to do it only in the inspector?
Thanks in advance