Created
June 23, 2016 04:37
-
-
Save greggirwin/09d8ec3780e943cd3cfa7820f6965ed1 to your computer and use it in GitHub Desktop.
Interactive crosshairs in 15 LOC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [Author: "Gregg Irwin"] | |
view [ | |
text bold "Crosshairs" text "Move the mouse" | |
return | |
base 640x480 water all-over | |
draw [pen black h-line: line 0x0 0x0 v-line: line 0x0 0x0] | |
on-over [ | |
h-line/2: as-pair 0 event/offset/y | |
h-line/3: as-pair 640 event/offset/y | |
v-line/2: as-pair event/offset/x 0 | |
v-line/3: as-pair event/offset/x 480 | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment