how to click on a drawn figure so that after clicking it disappears, so far it has turned out to click on the entire playing area.
if (FlxG.mouse.pressed)
{
remove(circle);
}
how to click on a drawn figure so that after clicking it disappears, so far it has turned out to click on the entire playing area.
if (FlxG.mouse.pressed)
{
remove(circle);
}
Copyright © 2021 Jogjafile Inc.
You're only checking if the mouse is being pressed, you should first check if the mouse is overlapping the sprite and only get the click when that's true.
An example https://gamefromscratch.com/haxeflixel-tutorial-mouse-input/