Hi, I am writing a databinding library and I would like to add delegates to the the “InputText.onValueChanged” delegate list if there is one. Right now there is only a “InputText.onSubmit” delegate list. This is fine for some use cases, but, not all.
I can make due with using Update to poll the text for now, but, I would prefer to have an event I could wire into, ie:
Target = GetComponent();
Target.onValueChanged(MyHandlerMethod);