Temporary Variables: Difference between revisions

Added article links and removed the spaces after each block
(→‎Blocks: Replace block images with Scratchblocks)
(Added article links and removed the spaces after each block)
Line 6:
the following images are made with https://scratchblocks.github.io/ and https://en.scratch-wiki.info/wiki/Block_Plugin/Syntax
 
[[set () to () (Temporary Variables)|<sb>set [Variable] to (1) :: #0869c2</sb>]] Set the temporary variable to a value. Can also be used for defining.
 
[[change () by () (Temporary Variables)|<sb>change [Variable] by (1) :: #0869c2</sb>]] Change the temporary variable by a number.
 
[[get () (Temporary Variables)|<sb>(get [Variable] :: #0869c2)</sb>]] Get the value of the temporary variable.
 
[[Delete () (Temporary Variables)|<sb>delete [Variable] :: #0869c2</sb>]] [[Delete () (Temporary Variables)|Delete the temporary variable.]]
 
[[delete all variables|<sb>delete all variables :: #0869c2</sb>]] Deletes every temporary variable.
 
[[variable () exists?|<sb><variable [Variable] exists ?:: #0869c2></sb>]] Checks if the temporary variable exists.
 
[[current variables|<sb>(current variables :: #0869c2)</sb>]] returns a list with every temporary variables. (will not include the value of those variables)
 
<scratchblocks>for each [variableVariable] in (10) {
 
} :: #0869c2</scratchblocks> [[for each () in ()|loops for the specified amount of time with the temporary variables incrementing every loop]]. Can also be used for defining.
{{ExtensionsNav}}
286

edits