size
The size block is a reporter block in the Looks category that reports the current size of the sprite that the block is in. It originates from Scratch. The default value is 100. The maximum and minimum values depends on the shape and size of the current costume of the sprite. The size of a sprite can be shown as a stage monitor.
Workaround
This block can be worked around by using a variable to save the value of the size:
define set size to (num)% set [size v] to (num) set size to (size::variables)% define change size by (num) set size to ((size::variables) + (num))
The custom blocks would be used in place of the actual blocks with the same names.
However, this workaround does not account for the maximum/minimum size, and the blocks above do not check if the input is a number.
It can also be worked around by using the () of () Sensing reporter:
([size v] of (self v))
However, this workaround always gets the value of the main sprite's size, and not the size of any of the clones.