Welcome to Imagine Logo in Scratch! ------------------------------------------------------------------------------------------- For those of you that don't know, Logo is a Programming language that influenced Scratch.It works off of a series of commands typed into a command box, which can be used to move the Scratch Cat around the area. https://en.wikipedia.org/wiki/Logo_(programming_language) ------------------------------------------------------------------------------------------- ~ COMMANDS ~ (You do not need to input the " before and after the command) "cs" - (Clear Screen) Clears the screen of any pen lines, and resets the Scratch Cat to its default position and rotation. "fd VALUE" - (Forward) Moves the Scratch Cat forward by VALUE pixels. E.G. fd 100 "bk VALUE" - (Backward) Moves the Scratch Cat backwards by VALUE pixels. E.G. bk 100 "rt VALUE" - (Right) Rotates the Scratch cat VALUE degrees right. E.G. rt 90 (this rotates the Scratch Cat by a right angle to the right) "lt VALUE" - (Left) Rotates the Scratch cat VALUE degrees left. E.G. lt 90 (this rotates the Scratch Cat by a right angle to the left) "pd" - (Pen Down) Puts the pen down so that when you move the cat it will leave a trail behind. "pu" - (Pen Up) Takes the pen up so that when you move the cat it will not leave a trail behind. "hc" - (Hide Cat) Hides the cat from view, however pen lines will still be visible. "sc" - (Show Cat) Shows the cat so that it becomes visible again. -------------------------------------------------------------------------------------------
~ NOTES ~ - You MUST spell all commands correctly or it will not work. If the system does not recognise an input, you will be presented with an error message. - DO NOT enter more than one command per input. If this happens, only the first command will be executed. - After a ClearScreen or green flag, the Scratch Cat is automatically in a position that when going forward, it goes straight up. - The Scratch Cat reaches the edge of the border after around: 170 pixels (straight up or down) 290 pixels (directly diagonally) 230 pixels (straight left or right) It's a little weird since the Scratch player is not square, but a rectangle. - I'm currently working on adding multiple commands into one input string, and repeat commands. ------------------------------------------------------------------------------------------- ~ UPDATE LOG ~ v1.0 - Release. Please inform me of any bugs!