summaryrefslogtreecommitdiffstats
path: root/virtual-programs
diff options
context:
space:
mode:
authorAndrés Cuervo <acwervo@gmail.com>2023-11-21 16:30:02 +0000
committerGitHub <noreply@github.com>2023-11-21 16:30:02 +0000
commitdc144ee174704fc9520e955b92b133b27596a2a3 (patch)
treea78b76f3f0c4c1d97784481e7c77782c3f4e9e37 /virtual-programs
parentMerge pull request #115 from FolkComputer/osnr/simplify-vulkan-readme (diff)
parentSmall hack to allow pointer warping to work (diff)
downloadfolk-dc144ee174704fc9520e955b92b133b27596a2a3.tar.gz
folk-dc144ee174704fc9520e955b92b133b27596a2a3.zip
Merge pull request #117 from FolkComputer/nm/points-at-warp
Small hack to allow pointer warping to work
Diffstat (limited to 'virtual-programs')
-rw-r--r--virtual-programs/points-at.folk2
1 files changed, 2 insertions, 0 deletions
diff --git a/virtual-programs/points-at.folk b/virtual-programs/points-at.folk
index a037f98f..ed3fb8eb 100644
--- a/virtual-programs/points-at.folk
+++ b/virtual-programs/points-at.folk
@@ -1,8 +1,10 @@
When when /rect/ points /direction/ with length /l/ at /someone/ /lambda/ with environment /e/ {
+ if {[string match "/*" $rect]} { return }
Wish $rect points $direction with length $l
}
When when /rect/ points /direction/ at /someone/ /lambda/ with environment /e/ {
+ if {[string match "/*" $rect]} { return }
Wish $rect points $direction with length 1
}