This block is used to add animation to a sprite
What is .setAnimation ?
What does CSS Stand for?
What is Cascading Style Sheets ?
What are the coordinates for the middle of a 400 by 400 grid ?
What is (200, 200) ?
This short block of code is used to make sprites rotation at a specific speed without using the counter pattern.
What is sprite.rotationSpeed ?
_____ is the rules that control the structure of the symbols, punctuation, and words of a programming language.
What is Syntax ?
_________ is telling the computer to run (or execute) a set of actions, from top to bottom.
What is a Function or Draw Loop
What is the name of the website we use to learn html?
What is w3schools ?
Where is ( 0 ,400) ?
What is the Bottom left corner ?
This block of code checks if the mouse is over the sprite specified.
What is mouseIsOver() ?
What symbol is missing from the code below?
if (keyDown("up")) {
police.y = police.y - 3
}
What is a semi colon ; ?
___________Executes a block of statements if the specified condition is true; otherwise, the block of statements in the else clause are executed.
What is an IF/Else statement.
This HTML tag is used to make bullet points.
What is <ul> Unordered List
Where is the following sprite location on the grid?
var sprite= createSprite(350, 50);
What is the bottom right corner?
This block of code determines the direction and speed in which a sprite moves AND it hides the counter pattern.
What is sprite.Velocity ?
What syntax symbols are used to start and end the function draw ?
What are curly brackets?
function draw() {
}
This block makes the sprite bounce off a target when they touch each other
What is Sprite.bounceOff()
CSS is used for ____________.
What is adding style to your webpage ?
if (sprite.y > 350) where will the sprite show up on the grid?
What is the bottom of the grid
This block of code is used to make a sprite move ONLY when the mouse moves on the Y axis
What is World.mouseY ?
Name the syntax error below
feather.setAnimation"feather";
What are missing parentheses ? ()
___________is used as a debugging tool to help you understand what your code is doing.
What is console.log() ?
All HTML documents must start with a _________ declaration.
What is <!DOCTYPE> .
What is World.mouseX ?
What is the X coordinate of the mouse ?
This block of code makes sprite visible and/or invisible when labelled true or false.
What is sprite.visible ?
Name the syntax error below
var alien = createSprite(50,200);
Alien.setAnimation("alien");
alien.velocityX = 0;
alein.velocityY = -3;
What are wrong variable names ?