(Optional) Lab 5.2 - Lots of Balls
In this lab, you will use cloning to create many identical sprites without having to rescript each one individually.
Part 1 - Follow the bouncing sprites
Create a script that contains a single sprite, choose from available costumes (i.e. basketballs, hearts, stars, balloons, Alonzo, doves). When
the green flag
is clicked, the sprite should go to the center of the stage, pick a random direction, and start moving in the chosen direction. If the sprite hits a wall, it should bounce off and keep moving.Modify the script to be controlled by the stage rather than by the sprite itself. When the spacebar is pressed, the stage should broadcast a message that triggers the sprite's movement. Pressing the spacebar again should restart the sprite's movement, including a new speed and new direction.
What would you need to do to add a second bouncing sprite (that behaved in the same way) to the script? What about 10 sprites? 100 sprites? What would happen if you wanted to change the speed of all the bouncing sprites in the script after you had created 100?
Part 2 - Clones
What happens to the original ("master") sprite each time the spacebar is pressed? Does that seem useful? What role should the original sprite play now that we're cloning?
Modify the script so that the original ("master") sprite hides at the beginning of the script and each new sprite appears when it is created.
Save your project as Lab5.2.
Bonus: Assign each clone a different value for some properties, such as speed, color, or size. Try controlling these values from the master sprite rather than having each clone choose its own.
Grading rubric
1.1 One bouncing sprite
1 point
1.2 Sprite controlled by stage
1 point
2.1 Clones created by stage
1 point
2.3 Hide master sprite
1 point
Bonus: Sprites have different properties
1 point
PROJECT TOTAL
5 points
Last updated
Was this helpful?