How to increase a click radius?

Hi all

I have a little question, how do I increase the radius of a click?, I am making a game where you need to click on enemies to deal damage, but the click range is small, so it is not possible to click on small enemies, is there a way to increase the click radius?

Example is like clicking a button where it is not

You could check distance of object from CursorX() CursorY() instead of checking if cursor is on them

1 Like

You could create an object with a roundish collision mask and origin at the centre. When you click, create the object, check for collision between the object and enemies and then finally delete the newly created object.

1 Like

thanks guys!!!