yes Android 5.0.2 Lollipop
Have you tried to update Webview in Google-Play?
matrixreal does your device use Android 4.4? You need at least Android 5. In Android 4.4 Webview doesn't work very well.
Probably because of the deceleration in the platform settings. Try to set deceleration to a lower number.
You could try to change vectorY:
+ Player: On collision with Solid
-> Player: Set Platform vector Y to -500
-500 is only for example you have to look what's best for you.
Take a look if this is helpful for you:
drive.google.com/file/d/1RdgFdcvTxbylAMbEhIoASx7QPaRkD_ov/view
Please have a look if that is what you want:
drive.google.com/file/d/1me1cwmrzDtnOM-FAE5GoibfISsDD_l8F/view
I can make a version with comments if needed.
Have you tried to remove the plugin?
construct.net/en/forum/construct-3/how-do-i-8/remove-plugin-project-142824
Maybe ask dop2000 for help?
Develop games in your browser. Powerful, performant & highly capable.
I think that is the latest, at least that is the last they put on the server. Maybe you need an older one?
Do you want add the green boxes only once or several times? If it's several times, should the green boxes renumbered or the new one like the first ones?
As far as I know the WebSpeech API doesn't work in Android WebView at the moment. Don't know if it's a bug or not implemented. May be Ashley know more about that.
Can you describe what you exactly want to archive? I think there is no easy way, at least for me. It may be easier with arrays and fill the values of the boxes from this arrays.
Now i added another object "x" (8 copies) over the grid randomly (see x position over grid) 0,x,x,x,4 0,1,2,3,4 0,1,x,x,4 X,1,2,3,4 0,1,2,x,x
Now i added another object "x" (8 copies) over the grid randomly
(see x position over grid)
0,x,x,x,4
0,1,2,3,4
0,1,x,x,4
X,1,2,3,4
0,1,2,x,x
Do you mean 8 new instances of the boxes or only change the values in the boxes?
Otherwise it would be easier you store all your values in an array.
In your case instead of the for each you could use:
+ System: Pick Box instance (LoopIndex("y")-1)+(LoopIndex("x")-1)×5
It would be easier if you would use zero-based numbering an the x and y loop in the correct order.
+ System: On start of layout -> Box: Destroy ----+ System: For "y" from 0 to 4 ----+ System: For "x" from 0 to 4 -----> System: Create object Box on layer 0 at (LoopIndex("x")×100+200, LoopIndex("y")×100+200) + Keyboard: On Space pressed + System: For "y" from 0 to 4 + System: For "x" from 0 to 4 ----+ System: Pick Box instance LoopIndex("x")+LoopIndex("y")×5 -----> Box: Set values to LoopIndex("x")
s3.eu-central-1.amazonaws.com/appodeal-sc2/Appodeal-Construct2-IRB-280917-2.0.3.c2addon
I don't have devices with gyroscope sensor only with accelerator. I have the same problem with the accelerator with Chrome and Chrome based browsers like Brave. With FireFox it works. Have you tested with FireFox?