Love, Transparency and OBS
Posted by SysL, on January 21, 2025. [Link]
First of all, thank you @xkeeper for this, who found this worked even after being told "It can't be done". The code is below:
function love.draw()
-- This is all you need to do in your Love2D Code, set the background to transparent.
-- Note, this will still appear as black in the Love2D Game Window.
love.graphics.setBackgroundColor(0,0,0,0)
-- Draw things after here!
end
Setting up the OBS Capture
- Game Capture
- Mode: Capture Window
- Allow Transparency: True/Checked
That's It?
That's it. As long as you don't change the background, anything drawn in the love2D window will be drawn as if on top of a transparent background. Great for fun effects without having to use a chroma key.