ScratchData LogoScratchData
Back to KCcoder65's profile

do you understand this?

KCKCcoder65•Created May 24, 2022
do you understand this?
2
1
7 views
View on Scratch

Instructions

Do you understand this? I sure do, its javascript. But the code is too small... This is part of what its acually saying: moving_west(this_sprite) { moveInDirection(this_sprite, getProp(this_sprite, "speed"), "West"); } function spinning_right(this_sprite) { turn(this_sprite, 6, "right"); } function growing(this_sprite) { changePropBy(this_sprite, "scale", 1); } function swimming_left_and_right(this_sprite) { if (getProp(this_sprite, "direction") == 0) { mirrorSprite(this_sprite, "right"); } else if (getProp(this_sprite, "direction") == 180) { mirrorSprite(this_sprite, "left"); } moveForward(this_sprite, getProp(this_sprite, "speed")); if (isTouchingEdges(this_sprite)) { edgesDisplace(this_sprite); changePropBy(this_sprite, "direction", 180); } } function moving_east(this_sprite) { moveInDirection(this_sprite, getProp(this_sprite, "speed"), "East"); } function moving_north(this_sprite) { moveInDirection(this_sprite, getProp(this_sprite, "speed"), "North"); } function patrolling(this_sprite) { moveForward(this_sprite, getProp(this_sprite, "speed")); if (isTouchingEdges(this_sprite)) { edgesDisplace(this_sprite); changePropBy(this_sprite, "direction", 180); } if (getProp(this_sprite, "direction") > 270 || getProp(this_sprite, "direction") < 90) { mirrorSprite(this_sprite, "right"); } else { mirrorSprite(this_sprite, "left"); } } function moving_south(this_sprite) { moveInDirection(this_sprite, getProp(this_sprite, "speed"), "South"); It's a player code + a title, who knew that one little player could have A LOT of code in it

Description

a short little ditty by me (the music)

Project Details

Project ID696015652
CreatedMay 24, 2022
Last ModifiedMay 24, 2022
SharedMay 24, 2022
Visibilityvisible
CommentsAllowed