I want to make a cursor that's fixed like the drawing a level mode in this project.
As of now, my Scratch is freaking out, so I can't download projects. Could someone at least show me the scripts they used to achieve that?
Thanks!
Offline
ROSMan wrote:
I want to make a cursor that's fixed like the drawing a level mode in this project.
As of now, my Scratch is freaking out, so I can't download projects. Could someone at least show me the scripts they used to achieve that?
Thanks!
Offline
Here is the project script for the mouse:
when gf clicked clear go to x: (-12) y: (0) forever if <(mode) = (1)> show if <(mouse y) > (y position)> if <not <(y position) = (168)>> change y by (24) end end if <(mouse x) > (x position)> if <not <(x position) = (228)>> change x by (24) end end if <(mouse y) < (y position)> if <not <(y position) < (-119)>> change y by (-24) end end if <(mouse x) < (x position)> if <not <(x position) = (-228)>> change x by (-24) end end else hide end end
Offline
And this:
when gf clicked forever if <(mode) = (1)> if <mouse down?> if <(mouse y) > (-140)> repeat until <not <mouse down?>> switch to costume (grid colour) stamp end end else switch to costume ((grid colour) + (3)) pen up end else hide end end
Offline