Paint Box

Description

Have you ever had a Paint Box? You can use the colorful brushes in the Paint Box to paint a colorful world. Today we are also making an exclusive Paint Box on scratch. Let’s take action.

Click on the green flag to start.

Or click Paint Box, and then learn online tutorial on the Scratch official website.

Required Components

First, you need to prepare the following components:

  • A RasPad 3

  • Scratch 3 (either online or offline)

You Will Learn

  • Use the Pen extension function to draw on scratch.

  • Let the sprite move with the mouse.

  • Modify the size of the costume and the location of the cursor.

  • Use the slider to modify the value of the variable.

Lesson Guide

Lay out the drawing board, add Pen expansion function

First, we delete the previous sprite, and then add the Pencil sprite and Block-X sprite to Scratch.

Upload Eraser.svg, Red.png, Blue.png, Green.png, Yellow.png and other files in the Sprite list (You have downloaded from raspad3.git before.), and finally set the size of the Pencil sprite and Block-X sprite Change to 50.

_images/paint_box1.png

Then, we add the Pen extension function.

_images/paint_box2.jpg

Add drawing function to Pencil sprite

Click on the Pencil sprite. First, we need to make the Pencil sprite move with the mouse. If the mouse button is pressed, we call the 「pen down」 block in the Pen extension function, which can draw along the track of the cursor. Otherwise, call the「pen up」 block to stop drawing.

_images/paint_box3.png

Click on the green flag and try to control the Pencil sprite with the mouse to draw a smiley face. You will find that the image is not drawn from the tip of the Pencil.

Note

Since the cursor is not on the Pencil tip, the line drawn is drawn from the middle of the Pencil sprite.

We click on the Costumes, select the entire Pencil sprite and move it until the Pencil tip is aligned with the cross cursor.

_images/paint_box4.png

Let the Pencil sprite change the painting color.

How to achieve that when we click on the color option below the stage, the Pencil sprite will switch the corresponding color?

First we write code for the Red sprite, when it is clicked, we broadcast a new “red” message.

_images/paint_box5.png

Then we return the code of the Pencil sprite, and when it receives the “red” message, we change the color of the Pencil to red.

_images/paint_box6.png

In the same way, we also write code for the Blue sprite, and when it is clicked, we broadcast a new “blue” message.

_images/paint_box7.png

Return the code of the Pencil sprite. When it receives the “blue” message, we change the color of the Pencil to blue.

Before painting, we clear the scene on the stage and set the Pencil color to red. Zoom in on the stage area and try your brush again.

_images/paint_box8.png

Add the function of clear drawing image.

Sometimes accidents happen when we draw, so we need to add a clear function. First select the Block-X sprite, when it is clicked, we clear all the screens.

_images/paint_box9.png

Next, we set a new costume for the Pencil sprite, click the “Costumes” tab, and then select the Upload Costume option from the icon on the bottom left to upload the Eraser.svg file.

Modify the size of the Eraser garment appropriately, and then place it on the upper right of the cursor.

_images/paint_box10.png

We started programming the Eraser sprite, and when it was clicked, we broadcast a new “eraser” message.

_images/paint_box11.png

Then continue to add code for the Pencil sprite. When it receives the “eraser” message, it will change to the Eraser costume,

so that when we click on the Eraser sprite, we can change the Pencil sprite’s costume to look like an Eraser sprite.

Then change the color to white that is consistent with the background color of the stage, so as to achieve the function of partial removal.

_images/paint_box12.png

Toggle clothing and brush width tools.

When the costume of the Pencil sprite is switched to Eraser, we need to switch the costume of the Pencil sprite to the Pencil-a costume by clicking the red and blue on the drawing board, so when we receive the “red” message and the “blue” message, We want to switch back to the original Pencil-a costume.

_images/paint_box13.png

In order to make our painting function more fun, we need to be able to change the width of the Pencil at any time.

Create a new variable named “width”, then right-click the “width” variable on the stage, select slider, and then you will see a slider on the stage that can change the value of the “width” variable.

_images/paint_box14.jpg

Use the value of the variable “width” as the size of the Pencil.

_images/paint_box15.png

Limit the painting range of the Pencil.

Only when the Pencil enters the drawing area, can painting be allowed.

_images/paint_box16.png

When the pen enters the toolbar, that is, when the y coordinate is less than or equal to -120, we need to call the 「pen up」 function to stop painting.

_images/paint_box17.png

Challenge

I believe that you will be smart enough to program and implement this game soon. Next, we will add some challenges to enrich our game content.

  • Add more color brushes to make a Paint Box that belongs to you.