Last active
March 24, 2022 17:58
-
-
Save EngineerSmith/b96d30292bc8e18edd9d4240f79ad3ae to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| local k = 0 | |
| function love.update(dt) | |
| if k % 15 == 0 then -- Adds a mark every 15 frames | |
| appleCake.countMemory() | |
| end | |
| k = k + 1 | |
| end | |
| appleCake.countMemory("byte") | |
| appleCake.countMemory("megabyte") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment