I want to place a jump button in the bottom right of the screen, so I tried to place the TouchScreenButton inside a Control, and setting its layout to bottom right. It works perfectly, but the problem is that if I press the button on Anroid, the player jumps "late", it seems it doesnt receive the command immediately. But if I place the TouchScreenButton outside the control, everything works smoothly, the problem is that I can't posittion the button anymore. Can you help me on this?

Thank you

Is it possible that the Control that contains the Button is also processing inputs?

You probably have to play with the Mouse Filter. It might have to be on Ignore for the Control. Otherwise, you can just use a regular Button or Sprite and code the Touch Input logic yourself, which is what I usually do. I've never used TouchScreenButton before (actually didn't know that was a thing).

Perfect DaveTheCoder, it was like you said, I didn't know about it! Thank you very much!

a year later