Game Tool Command | Game Tool | Javascript Code | Technique - What does the tool do? |
Move Forward
|
moveForward();
moveForward(); |
The move forward tool enables the object or character to move forward
| |
Move Forward
|
moveForward();
moveForward();
moveForward();
|
The move forward tool enables the object or character to move forward
| |
Move Forward
Move forward
Turn right
Move Forward
|
moveForward();
moveForward(); turnRight(); moveForward(); |
The move forward tool enables the object or character to move forward
The turn right tool enables the object or character to turn right.
| |
Move Forward
Turn Left
Move Forward
Turn right
Move forward
|
moveForward();
turnLeft(); moveForward(); turnRight(); moveForward(); |
The move forward tool enables the object or character to move forward
The turn right tool enables the object or character to turn right
The turn left tool enables the object or character to turn left
| |
Turn Right
Move Forward
Turn Left
Move Forward
Move Forward
Move Forward
Turn Left
Move Forward
|
turnRight();
moveForward(); turnLeft(); moveForward(); moveForward(); moveForward(); turnLeft(); moveForward(); |
The move forward tool enables the object or character to move forward
The turn right tool enables the object or character to turn right
The turn left tool enables the object or character to turn left
| |
Repeat 5 times
Do Move forward
|
for (var count = 0; count < 5; count++) {
moveForward(); } |
The repeat 5 times tool enables the character or object to repeat one move five times
The move forward tool enables the object or character to move forward
| |
Turn Right
Repeat 5 times
Do Move forward
|
turnRight();
for (var count = 0; count < 5; count++) { moveForward(); } |
The turn right tool enables the object or character to turn right
The repeat 5 times tool enables the character or object to repeat one move five times
The move forward tool enables the object or character to move forward
| |
Repeat 4 times
Do Move forward
Turn Left
Repeat 5 times
Do Move forward
|
for (var count = 0; count < 4; count++) {
moveForward(); } turnLeft(); for (var count2 = 0; count2 < 5; count2++) { moveForward(); } |
The repeat 4 times tool enables the character or object to repeat one move five times
The turn left tool enables the object or character to turn left
The repeat 5 times tool enables the character or object to repeat one move five times
The move forward tool enables the object or character to move forward
| |
Move Forward
Move Forward
Turn Right
Move Forward
Move Forward
Turn Right
Repeat 3 times
Do Move Forward
|
moveForward();
moveForward(); turnRight(); moveForward(); moveForward(); turnRight(); for (var count = 0; count < 3; count++) { moveForward(); } |
The move forward tool enables the object or character to move forward
The repeat 3 times tool enables the character or object to repeat one move five times
The turn right tool enables the object or character to turn right.
| |
Repeat until Pig
Do Move Forward
|
while (notFinished()) {
moveForward(); } |
The repeat until pig tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
| |
Move Forward
Move Forward
Turn Left
Move Forward
Move Forward
Turn Left
Repeat until Pig
Do Move Forward
|
moveForward();
moveForward(); turnLeft(); moveForward(); moveForward(); turnLeft(); while (notFinished()) { moveForward(); } |
The move forward tool enables the object or character to move forward
The turn left tool enables the object or character to turn left.
The repeat until pig tool enables the character or object to repeat one or multiple moves until the object
| |
Repeat Until Flower
Do move forward
Turn Left Move Forward Turn Right
|
while (notFinished()) {
moveForward(); turnLeft(); moveForward(); turnRight(); }
Con
|
The repeat until Flower tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The turn left tool enables the object or character to turn left
The turn left tool enables the object or character to turn left
| |
Repeat Until Flower
Do Turn right
Move Forward
Turn Left
Move Forward
|
while (notFinished()) {
turnRight(); moveForward(); turnLeft(); moveForward(); } |
The repeat until Flower tool enables the character or object to repeat one or multiple moves until the object
The turn right tool enables the object or character to turn right
The move forward tool enables the object or character to move forward
The turn left tool enables the object or character to turn left
| |
Repeat Until Flower
Do Move Forward
If path to the left
Do turn Left Move Forward
|
while (notFinished()) {
moveForward(); if (isPathLeft()) { turnLeft(); moveForward(); } } |
The repeat until Flower tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the left/right enables the object or character to choose if there is a path to the left/right they can turn left and move forward.
| |
Repeat Until Flower
Do Move Forward
If path to the right
Do Turn Right
Move Forward
|
while (notFinished()) {
moveForward(); if (isPathRight()) { turnRight(); moveForward(); } } |
The repeat until Flower tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the left/right enables the object or character to choose if there is a path to the left/right they can turn left and move forward.
| |
Repeat Until Acorn
Do Move Forward
If Path to the left
Do Turn Left
Move Forward
|
while (notFinished()) {
moveForward(); if (isPathLeft()) { turnLeft(); moveForward(); } } |
The repeat until acorn tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the left/right enables the object or character to choose if there is a path to the left/right they can turn left and move forward.
| |
Repeat Until Acorn
Do Move Forward
If Path to the Right
Do Turn Right
Move Forward
|
while (notFinished()) {
moveForward(); if (isPathRight()) { turnRight(); moveForward(); } } |
The repeat until acorn tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the left/right enables the object or character to choose if there is a path to the left/right they can turn left and move forward.
| |
Repeat Until Acorn
Do If path ahead
Do Move Forward
Else Turn Left
|
while (notFinished()) {
if (isPathForward()) { moveForward(); } else { turnLeft(); } } |
The repeat until acorn tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the ahead enables the object or character change its direction and moveforward or the can make another decision to turn left or right
| |
Repeat Until Acorn
Do if path ahead
Do move forward
Else
If path to the right
Do turn right
Else turn left
|
while (notFinished()) {
if (isPathForward()) { moveForward(); } else { if (isPathRight()) { turnRight(); } else { turnLeft(); } } } |
The repeat until acorn tool enables the character or object to repeat one or multiple moves until the object
The move forward tool enables the object or character to move forward
The if path to the left/right enables the object or character to choose if there is a path to the left/right they can turn left and move forward.
The turn right tool enables the object or character to turn right
The turn left tool enables the object or character to turn left
|
This table shows what i have learnt from DigiTech. What it shows is codes and screenshots of the moves that i did. The site I used to do this was code.org. After we completed a level we had to take a screenshot and post it onto the table, then we had to insert the code into the table.