diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-05-22 18:32:08 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-05-22 18:32:08 -0700 |
commit | 5d0e0f70c4aace4cb539f599eb2ce263e0d672d0 (patch) | |
tree | ddaa451cc6cc5eca259e9299e53acc906726d8d9 | |
parent | f421e1daa52a52956f40b3ee6d8b527ba1c30d5a (diff) | |
download | lines.love-5d0e0f70c4aace4cb539f599eb2ce263e0d672d0.tar.gz |
one more implication
-rw-r--r-- | app.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app.lua b/app.lua index 9d202e4..d43f4f6 100644 --- a/app.lua +++ b/app.lua @@ -117,6 +117,9 @@ end -- y=101. You have to use the test harness within these limitations for your -- tests to faithfully model the real world. -- +-- One drawback of this approach: the y coordinate used depends on font size, +-- which feels brittle. +-- -- In the fullness of time App will support all side-effecting primitives -- exposed by LÖVE, but so far it supports just a rudimentary set of things I -- happen to have needed so far. |