Assuming the image is on a DrawingCanvas:
-> DrawingCanvas: Save image (PNG, quality 100, offset 0, 0 size 0 x 0)
-> System: Wait for previous actions to complete
-> Browser: Invoke download of DrawingCanvas.SavedImageURL with filename "image.png"
Have you tried Paster plugin? It's similar to Canvas, and as far as I remember, it works well when pasting on every tick.
Also, try moving the pasting events to the bottom of the event sheet.
By the way, I'm using Construct 2.
You should've mentioned this in the subject. Canvas in C3 works completely differently.
Check out this example
howtoconstructdemos.com/create-a-reflection-with-water-effect
That was most certainly a browser issue.
Try the same tween but without any conditions - for example, on start of layout. If that works, then the problem is not with the tween.
There isn't enough information. If you click the electron object, which behaviors does it have? (on the left properties tab)
You can also right-click it and select "Find all references" to find all events. Please post screenshots of all events responsible for electron movement and rotation.
Can you switch Construct to English and make another screenshot?
My identity is blown! (◣_◢)
You can use "For each ordered" loop.
For each Basket order by apples (descending) Spawn_point compare variable id=loopindex ... Basket set position to Spawn_point
If there are many baskets and you want to stop the loop after the third basket you can add another condition:
System compare value loopindex<3
Develop games in your browser. Powerful, performant & highly capable.
Система -> Установить скорость игры 1
Not timeline, time scale! You set Time scale to 0 when a level is finished to pause the game. You need to change it back to 1 on start of a new level.
You need to reset the time scale to 1 on start of every new level. Otherwise the game will be paused.
Also I really suggest you re-use the same event sheet for all levels.
You need to use "Is between angles" or "Is within angle" condition. Not "Is between values".
"Is within angle" is easier, for example: Is within 45 degrees of 180
There are also a couple official examples in Construct, search for "boss"