Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
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
How do i shoot only once?
Example:
Touch to shoot a bullet and can't shoot more.
if this bullet overlaps another object => can shoot another bullet.
Please help me, sorry for my English
Develop games in your browser. Powerful, performant & highly capable.
Many different ways
on touch start
bullet is not overlapping object- shoot bullet
on touch end
is touching
bullet is not overlapping object
system trigger once - shoot bullet
Oh, thank you. I do it. Amazing
From what I understand you want to have only one bullet, but you get another bullet if your first bullet hits a certain object?
If so, this should work with variables.
On touch, if variable =1
-shoot bullet
-set variable to 0
Bullet collide with object
-set variable to 1