There are two ways around it:
- Add listeners in the editor - if your button is placed in the editor and always does the same thing, then this is easiest. Select the button and find the Button component. At the bottom, there is an On Click() field. There you can select and object, script component and function on that script (function must be public), you can also add values to pass.
- Add listeners in script:
[SerializeField]
private Button MyButton = null; // assign in the editor
void Start()
{
MyButton.onClick.AddListener(() => { MyFunction(); MyOtherFunction(); });
}
↧