Temporary Variables: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
No edit summary
→‎Blocks: Replace block images with Scratchblocks
Line 6: Line 6:
the following images are made with https://scratchblocks.github.io/ and https://en.scratch-wiki.info/wiki/Block_Plugin/Syntax
the following images are made with https://scratchblocks.github.io/ and https://en.scratch-wiki.info/wiki/Block_Plugin/Syntax


[[File:Set Variable to Value.png|frameless|link=set () to () (Temporary Variables)]] Set the temporary variable to a value. Can also be used for defining.
<sb>set [Variable] to (1) :: #0869c2</sb> Set the temporary variable to a value. Can also be used for defining.


[[File:Change variable by 1.png|frameless|link=change () by ()]] Change the temporary variable by a number.
<sb>change [Variable] by (1) :: #0869c2</sb> Change the temporary variable by a number.


[[File:Get variable.png|frameless|link=get () (Temporary Variables)]] Get the value of the temporary variable.
<sb>(get [Variable] :: #0869c2)</sb> Get the value of the temporary variable.


[[File:Delete variable.png|frameless|link=delete () (Temporary Variables)]] [[Delete () (Temporary Variables)|Delete the temporary variable.]]
<sb>delete [Variable] :: #0869c2</sb> [[Delete () (Temporary Variables)|Delete the temporary variable.]]


[[File:Delete all variables.png|frameless|link=delete all variables]] Deletes every temporary variable.
<sb>delete all variables :: #0869c2</sb> Deletes every temporary variable.


[[File:Variable exists?.png|frameless|link=variable () exists?]] Checks if the temporary variable exists.
<sb><variable [Variable] exists :: #0869c2></sb> Checks if the temporary variable exists.


[[File:Current variable.png|frameless|link=current variables]] returns a list with every temporary variables. (will not include the value of those variables)
<sb>(current variables :: #0869c2)</sb> returns a list with every temporary variables. (will not include the value of those variables)


<scratchblocks>for each [variable] in (10) {
[[File:For each variable in 10.png|frameless|link=for each () in () (Temporary Variables)]] loops for the specified amount of time with the temporary variables incrementing every loop. Can also be used for defining.

} :: #0869c2</scratchblocks> loops for the specified amount of time with the temporary variables incrementing every loop. Can also be used for defining.
{{ExtensionsNav}}
{{ExtensionsNav}}