We broke this in December, and since, then the "touching mouse" and "touching edge" boolean blocks have been serialized to:
this.touching(mouse)
this.touching(edge)
// instead of
this.touching("mouse")
this.touching("edge")
This PR fixes that!
I'm using JSON.stringify instead of just e.g. "\"mouse\"" because it conveys the same meaning as other general uses, including e.g. spriteInputToJS and increase.
We broke this in December, and since, then the "touching mouse" and "touching edge" boolean blocks have been serialized to:
This PR fixes that!
I'm using
JSON.stringify
instead of just e.g."\"mouse\""
because it conveys the same meaning as other general uses, including e.g.spriteInputToJS
andincrease
.