From f704e23a74201fdaa1f78049b2748dcf6ea3d125 Mon Sep 17 00:00:00 2001 From: Kristina Lustig Date: Tue, 20 Sep 2022 11:22:14 -0400 Subject: [PATCH] Include love.graphics.reset() disclaimer in docs I spent a while troubleshooting this issue. I'm not positive about the wording but the inability to use love.graphics.reset() between push:start() and push:finish() is useful to include as a disclaimer. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5ee2f2b..edbd3de 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ push:apply(operation) ``` **operation** should be equal to "start" or "end", meaning "before" or "after" your main drawing logic +**Note**: calling `love.graphics.reset()` at any point between `push:start()` and `push:finish()` will result in the rest of your graphics operations executing incorrectly. + Mobile support ----------------