Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Does any know if its possible to only fire a bullet if the mouse is within a certain angle of an object?
Develop games in your browser. Powerful, performant & highly capable.
You mean the angle from your character to the mouse cursor is between a certain angle?
You need to use angle() expression, for example:
angle(Character.x, Character.y, Mouse.x, Mouse.y) is between -45 and 45 degrees
Thanks a lot, it works now. I was putting in the expression incorrectly.