true color sprites shouldnt show in non color modes

This commit is contained in:
bryanthaboi
2026-08-18 16:06:15 -04:00
parent a1ab5e2cff
commit f7bdaa81f8
7 changed files with 39 additions and 12 deletions
+4
View File
@@ -126,6 +126,9 @@ end
-- ---- and the draw picks the right table -----------------------------------
do
local PaletteFX = require("src.render.PaletteFX")
local savedColors = PaletteFX.mode
PaletteFX.setMode("redpp")
local G = love.graphics
local realDraw = G.draw
local blits
@@ -147,6 +150,7 @@ do
"with the doll's own sprite deciding which, the way SetFacingBigDoll does")
G.draw = realDraw
PaletteFX.setMode(savedColors)
end
-- ---- WillObjectIntersectBigObject -----------------------------------------