public RepeatButton();

How can I use public RepeatButton(); are there any good examples? I couldn’t understand anything in Unity documentations

Hi, given a Button that you want to repeat every 200ms after 500ms, you can do this:

var button = new RepeatButton();
button.SetAction(() => {}, 500 /*delay in ms*/, 200 /*interval in ms*/);

Hope this helps!

Thanks