mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-22 21:17:33 +00:00
David Vogel
8cf46232de
- Add full map capture mode - Show error on screen if screencapturing failed - Add additional frame delay for jumps larger than the grid size - Show progress for map capture mode - Tweak streaming chunk target - Update README.md
17 lines
513 B
Lua
17 lines
513 B
Lua
-- Copyright (c) 2019 David Vogel
|
|
--
|
|
-- This software is released under the MIT License.
|
|
-- https://opensource.org/licenses/MIT
|
|
|
|
if not async then
|
|
dofile("data/scripts/lib/coroutines.lua")
|
|
end
|
|
dofile("data/scripts/perks/perk_list.lua")
|
|
|
|
dofile("mods/noita-mapcap/files/compatibility.lua")
|
|
dofile("mods/noita-mapcap/files/util.lua")
|
|
dofile("mods/noita-mapcap/files/hilbert.lua")
|
|
dofile("mods/noita-mapcap/files/external.lua")
|
|
dofile("mods/noita-mapcap/files/capture.lua")
|
|
dofile("mods/noita-mapcap/files/ui.lua")
|