The block sets its sprite’s X and Y position to the specified amounts. This block has no animation in its movement — it is the simplest way to move a sprite around the screen without displaying any animation (i.e. gliding). Therefore, this block is used whenever a sprite needs to jump to another spot.
The example demonstrates the use of clone and gliding function in Sprite.
The example demonstrates the use of clone and gliding function in Sprite:
- Whenever the sprite is clicked, a clone is created.
- When a clone is created its position is set to a random position on the top of the stage and then it glides down to the bottom.
- When it reaches the bottom, the clone is deleted.
Script
Output
Read More