Useful Tips in Snap!
This is a list of the most useful tips in the Snap! editor in case you don't know. This is a wiki post, you can edit this post, but:
Rules for editing
- Add a tip or some useful information that can help.
- Do not be rude.
- It must be a tip, don't add some trash stuff.
- You should not edit the text above "Tips".
Follow the above rules. Editing this post without following the rules may have a risk of being reverted.
Tips
(you may edit this part and below)
1 - Previous costume
Do not use switch to costume ((costume #) - (1)) block and instead use switch to costume (() - (1)) to avoid the costume from suddenly switching to a turtle.
2 - Debug your code
The button below can be used to slow down scripts to debug your code. This is very useful to check errors. This is known as visible stepping. To enter this mode, click and the button will turn blue and add a slider:
. This slider can be used to control the speed of your program. As you run your program, you can see it progress based upon which block or input is highlighted:
This can be useful for determining where in your code an error occurred. Note that visible stepping does not work within warp blocks. Other helpful parts of visible stepping include:
Single Stepping: When you slide the speed slider all the way down to the bottom, you enter single stepping mode. The pause button is replaced with the single step button. This allows you to move forward through your code one step at a time.
Debug Variable Scope: When visible stepping is on, one can visually see a variable's scope and where it is defined based upon blue highlighting:
Reporting as you go: Reporters will show speech balloons to help you know what they are reporting and understand strange behaviours.
3 - Random decimal between integers
(pick random (1) to (10))
If both inputs are integers without decimal points, the return value is an integer.
(pick random (1.) to (10))
If you want a random decimal between two integers, put a decimal point after either (or both) integers.
(pick random (1.2) to (3.4)
You can also get a random decimal between two decimals.
Want to add more tips? You can edit this wiki post! Follow the rules!