Questions tagged [construct-3]

For questions relating to Construct 3, the game making software.

Construct 3 is game making software from Scirra. Construct 3 is the next iteration of software after Scirra's Construct 2.

Construct 3 creates HTML5 games, and the editor itself runs in the browser using the latest web technologies.

8 questions
2
votes
1 answer

how to use Construct 3 object with ReactJs

So i'm familiar with Construct 3 platform, and i want to do website development. I want a character like object for my web that can move like game character. I know how to make this in Construct 3, but i don't know how to achieve this with React. I…
Flitzcore
  • 166
  • 1
  • 11
0
votes
1 answer

Construct 2/3: Continuous Loop Function?

Using Construct 3 to build a game. I want to change this function in the code below (which just randomly assigns a frame count in an array) to something that isn't random, but instead loops in order from indexes 0 to 10 and then back to 0 and then…
Michael Teller
  • 71
  • 1
  • 2
  • 7
0
votes
0 answers

APK file creation

I have created a sample game using construct 3 . I want to know how can I convert it in apk file . I have no idea about that . Do I need to do it on Android Studio ? Can any one help me please . Many thanks
0
votes
1 answer

Construct - make a function call to web page and give a callback function to be called later

Is it possible in Construct2/3 to make a function call to web page and give a callback function name to web page so its called later?
Tom
  • 6,725
  • 24
  • 95
  • 159
0
votes
2 answers

Construct3 Splash Screen For HTML5

How to change default splash screen in construct3 HTML5. which show like and also in console.log it show bellow message "Made with Construct 3, the game and app creator :: https://www.construct.net" how to remove it
0
votes
1 answer

Construct 2 to Construct 3 Syntax

I am trying to follow a tutorial but the tutorial is in construct 2 (https://www.construct.net/en/tutorials/multiplayer-tutorial-chat-room-591/chat-events-3?vic=12) In Construct 2, you would use: self.text & newline & Function.Param(0) However, in…
BCLtd
  • 1,459
  • 2
  • 18
  • 45
0
votes
1 answer

how to create non-rectangular clickboxes in Construct 3?

I would like to create a circular field composed of smaller fields (imagine a donut split to several parts). Each field is like an arc, thus if I draw rectangles around its corners the rectangle would overlap the neighbouring fields. How can I make…
Akasha
  • 2,162
  • 1
  • 29
  • 47
-2
votes
2 answers

Get asynchronous value's return on C2

Here is the code I'm using: const { exec } = require("child_process"); exec("ls -la", (error, stdout, stderr) => { if (error) { console.log(`error: ${error.message}`); return; } if (stderr) { console.log(`stderr:…