mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-22 21:17:33 +00:00
27 lines
832 B
Lua
27 lines
832 B
Lua
-- Copyright (c) 2022 David Vogel
|
|
--
|
|
-- This software is released under the MIT License.
|
|
-- https://opensource.org/licenses/MIT
|
|
|
|
---@type NoitaEntityAPI
|
|
local EntityAPI = dofile_once("mods/noita-mapcap/files/libraries/noita-api/entity.lua")
|
|
|
|
local oldPerkSpawn = perk_spawn
|
|
|
|
---Spawns a perk.
|
|
---@param x number
|
|
---@param y number
|
|
---@param perkID integer
|
|
---@param dontRemoveOtherPerks boolean
|
|
---@return NoitaEntity|nil
|
|
function perk_spawn(x, y, perkID, dontRemoveOtherPerks)
|
|
local entity = EntityAPI.WrapID(oldPerkSpawn(x, y, perkID, dontRemoveOtherPerks))
|
|
if entity == nil then return end
|
|
|
|
-- Remove the SpriteOffsetAnimatorComponent components from the entity.
|
|
local components = entity:GetComponents("SpriteOffsetAnimatorComponent")
|
|
for _, component in ipairs(components) do
|
|
entity:RemoveComponent(component)
|
|
end
|
|
end
|