Is it a feature of the game that the chicken is just either running in circles or shooting wildly around hitting itself with its own bullets?
Viewing post in Headless Chicken jam comments
So running around is definitely a feature. We wanted some random movement, while the player was controlling the weapon.
But yeah, the hitting itself part is a bug 😂. We are not very sure, but it has something to do with how the mouse's location is calculated in game space in Unity.
Apart from that, how did you like the idea?
I played your game too and it is super interesting.
That would be better implementation for the bullets maybe. So currently the bullet is a Box Collider 2D with a trigger
And the players and enemies inherit from a class called MovemementEntity. So when any bullet collides with a MovementEntity(enemy or player) then it causes damage to the entity. Probably some other implementation might be better. But right now the shooting itself needs to be fixed.
Thanks for playing the game again!!