Monday, June 5, 2017

Blog 41





  1. I want to make a sprite appear on my screen.
  2. What 3 things(or lines of code) do I need to do to get it on the screen?



18 comments:

  1. You need to create a sprite and set a name for it, then, if it has it, then set an animation as the sprite, then draw the sprite.

    -Winten

    ReplyDelete
  2. var sprite=createSprite(100,350);

    sprite.setAnimation("chick");

    drawSprites();

    ReplyDelete
  3. var kite = createSprite(x,y); tells where to put sprite
    kite.setAnimation("kite 2.png_1"); tells what sprite looks like
    drawSprites(); draws sprite

    -gavin

    ReplyDelete
  4. You need to create the sprite and name it
    You need to link the sprite name to the file path
    You need to draw the sprite to the screen
    -Javon


    ReplyDelete
  5. var bunny = creatSprite (x,y)
    bunny.setAnimation "bunny"
    bunny.scale = x
    -Cindy

    ReplyDelete
  6. var sprite=createsprite(number,number)
    sprite.setanimation("something")
    drawsprite();
    -sam

    ReplyDelete
  7. 1. Set Animation
    2. Variable
    3. Draw Sprite
    ELLIE

    ReplyDelete
  8. Create a sprite, Name it, give it an animation

    Bradley Farr

    ReplyDelete
  9. Create sprite and name it
    set the animation as the sprite
    set sprite to be drawn on screen
    -Hailey T.

    ReplyDelete
  10. create sprite, name it, link the sprite to the file
    draw the sprite to the screen

    mark l

    ReplyDelete
  11. 1. create the sprite and name it
    2. to link the sprite name to the file path
    3. draw the sprite to the screen
    dan

    ReplyDelete
  12. var sprite=createsprite(x,y)
    sprite.setAnimation("spritename")
    drawsprite();
    -EMILY

    ReplyDelete
  13. 1 create sprite
    2 variable for sprite
    3 set dimensions for sprite
    -nathan

    ReplyDelete
  14. var bunny = creatSprite (x,y)
    bunny.setAnimation "bunny"
    bunny.scale = x
    andrew

    ReplyDelete
  15. create sprite
    set animate
    draw sprite

    -addy

    ReplyDelete
  16. You need to create the sprite, set the animation and add "draw sprite" after the last line of code.

    Sophie Dorey

    ReplyDelete
  17. you have to create the sprite and name it
    then you link the sprite and where
    then make it be drawn kat

    ReplyDelete
  18. var sprite = createSprite (x, y);
    sprite.setAnimation("bunny");
    drawSprites();

    Dylan Rees

    ReplyDelete