noita-mapcap/init.lua
David Vogel 9b52f9e410 Implement spiral movement
Also:
- Disable polymorphing, teleportation
- Decrease camera smoothing
- Disable infuence of the mouse on the camera
- Disable parallax effect
- Add some useful effects to player
- Increase player HP
2019-10-18 22:35:51 +02:00

19 lines
593 B
Lua

function OnModPreInit()
-- print("Mod - OnModPreInit()") -- first this is called for all mods
end
function OnModInit()
-- print("Mod - OnModInit()") -- after that this is called for all mods
end
function OnModPostInit()
-- print("Mod - OnModPostInit()") -- then this is called for all mods
end
function OnPlayerSpawned(player_entity)
end
-- this code runs when all mods' filesystems are registered
ModLuaFileAppend("data/scripts/director_init.lua", "mods/capture-all/files/capture.lua")
ModMagicNumbersFileAdd("mods/capture-all/files/magic_numbers.xml") -- override some game constants