Creating the Boat "Sprite"

Mrs. Wright has no idea why they are called Sprites and she wishes that they were NOT called Sprites but alas they are

A sprite is an little LED Character that we can make move around the Grid. The sprite code can be found under the Game blocks (under advanced)

For this simulation our sprite will be the boat

//create a new variable boat

On start
    set boat to create sprite 0,0

Before you go on, take a minute and play around with the other sprite blocks, especially the move 1, turn and if on edge bounce

On Start
    move boat to bottom right corner
    draw diagonal line to 0,0 (top left corner)
    //this is not part of final project

Last updated