Hi,
I’m able to add Reactions to a Signal Receiver that take a simple type - string or - int - and specify that value in the inspector, and have it get through to the function. YES!
When I try using an enum though, I can no longer use that function in the Signal Receiver; its not selectable from the drop down.
eg,
public enum MyType
{
None,
Something
}
public void MyReaction(MyType vaue) { ... } <--- cannot use this
Any ideas?