can you remove the gear-girl dependency. it does nothing. you mod only contains graphics. that gear-girl never access. as all its graphics are hardcoded with
__gear-girl__/graphics
a port of NewGirlCharacter has been released. and if you remove the dependency on gear-girl then i can have that mod actually load your graphics. you dont need to change the dependeny to anything as that mod will load your mod and use the graphics.
the code for the port will be
local HR_IMGPATH = "__NewGirlCharacterHR-fork__/graphics/HR/"
if not mods["NewGirlCharacterHR-fork"] then
for _, level in pairs(charactergeargirl_animations) do
for _, layer in pairs(level) do
if type(layer) == "table" and layer.hr_version then
layer.hr_version = nil
end
end
end
end
this will effectivly use your grapics over its own by actually calling the graphics stored in this mod. i dont want to have to do a re-release just to use a mod that already exists and isnt actually doing anything right now.