See "Speech recognition" template on the Start page in C3. It prints the recognized text.
Ashley Could you please clarify the issue? I've heard about it before, but didn't expect that so many devices are affected! Why does it matter for an exported game if a recent version of Chrome is installed on the device?
It works for me.. See this demo:
dropbox.com/s/x2q9shvm5wdfh5d/OrbitRotation.c3p
Develop games in your browser. Powerful, performant & highly capable.
If you already have strings like "10110" for each line/column, you can do it an easy way. For 5x5 grid:
Set text to replace(text, "11111", "5") Set text to replace(text, "1111", "4") Set text to replace(text, "111", "3") Set text to replace(text, "11", "2") Set text to replace(text, "00000", " ") Set text to replace(text, "0000", " ") Set text to replace(text, "000", " ") Set text to replace(text, "00", " ") Set text to replace(text, "0", " ")
.
A smarter way to do this is by counting "1" in each line in loops. See this demo:
dropbox.com/s/04ib2t619128hks/Nonogram.capx
It generates strings for Y axis in the array (rows), you can modify it for columns.
Here you go:
dropbox.com/s/0hjl0u464ral1z1/WeirdSine.capx
You don't need to link everything to everything by their UIDs. (for example detector to weapon etc.) Just use Box as the main object and link all other parts to it.
I fixed your file, have a look:
dropbox.com/s/7l91e8q6nzumsqo/character2.c3p
You do not have permission to view this post
Yeah, it only works if you add "Wait 0.1" before moving the canvas.
I don't know why it doesn't require Wait in my file. Maybe the canvas size is much smaller and objects can be pasted on it in one tick.
Sorry, I don't really understand your project..
Like I said, another option is to make your own z-elevation effect by changing scale and position of sprites. You may find it easier.
Here is a demo:
dropbox.com/s/gm68vv0lm3dmh69/ZElevationOffset2.c3p
since the textWidth expression is delayed a tick
In C3 it's no longer delayed. You can set text and access textWidth or textHeight immediately.
There is a similar idea, Ashley said it's not planned..
construct3.ideas.aha.io/ideas/C3-I-726
You can make your own z-elevation system with events - move and scale objects slightly depending on their relative angle and distance to the player.
Or use DrawingCanvas to offset z-elevation sprites. See this demo I made:
dropbox.com/s/f30bwrkam5dwwnw/ZElevationOffset.c3p
Member since 26 May, 2016 Last online 4 Jul, 2026