Add an option for number inputs: require integer and require positive.
require integer means that people are not able to place a decimal point to the number input.
require positive means that people are not able to place a minus sign to the number input.
I'm requesting this because in Scratch, there are some inputs where you can NOT place a . or a - in their number inputs, like the following blocks:
repeat (10) {
}
Decimal points and minus signs cannot be placed in the repeat block first number input.
wait (1) seconds
Decimal points are allowed, but not the minus sign.
go [forward v] (1) layers
Minus signs are allowed, but not the decimal point.
Now what if you can make an input that behaves like the number inputs from the above? That would be cool.
There are workarounds to do this, like:
...for disallowing negative numbers.
...for disallowing non-integers.
...for disallowing both.
But that would require significant changes, so an option was considered. Would it be a good idea?