diff options
| author | Andrés Cuervo <acwervo@gmail.com> | 2023-11-21 16:30:02 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-21 16:30:02 +0000 |
| commit | dc144ee174704fc9520e955b92b133b27596a2a3 (patch) | |
| tree | a78b76f3f0c4c1d97784481e7c77782c3f4e9e37 /virtual-programs | |
| parent | Merge pull request #115 from FolkComputer/osnr/simplify-vulkan-readme (diff) | |
| parent | Small hack to allow pointer warping to work (diff) | |
| download | folk-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.folk | 2 |
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 } |
