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
In this tutorial I have given demonstration how we can make multiple popup alert with single functions. Popup alert like when win match, when lose match etc. Wh...
This tutorial follows on from the two basic JSON tutorials. If you’ve not looked at them, and are unfamiliar with JSON, then you can find them here: JSON Introd...
We've been working hard on a complete redesign of Construct's functions feature! Previously the Functions plugin was used for making functions in events. As of...
We recently introduced a new redesigned functions feature for Construct 3. Check out that blog post in case you missed it. We have a few more things we wanted t...
Var promis = FBInstant.Context.GetPlayersAsync(); Promis.Then(function(players) {alert(34256);}).Catch(function() {alert(3452);}); }. But no response why?
On Arduino theres the Map function, it gets a range and converts it inside another range (this page shows it ). Is there any similar function on Construct? I wa...
Finally I am making good use of functions. I used to fear them but now I love them. However, I know there's more to them than I know. Basically, rather than rep...
How do I generate m. Ultiple instances from a single object, much like a tree grow up?
Since I can't return an array of values from a function, I believe my only choice is to set values and in various global arrays. This produces "code" that's ins...
I'm finding it useful to put complex object data in string instance vars as Json. I've got this working well in my function events (onFunction) when I only work...