Re: Does SNESAPU.DLL and libgme.dll work in LOVE2D
Posted: Tue May 09, 2023 1:25 pm
So How do you use this in say, a 2D platformer game.
If you don't know how to approach programming a platformer (in terms of structure or otherwise), then that's an entirely different topic, and has no particular relation to SNESAPU or libgme themselves.Yozzaxia wrote: ↑Sat Oct 01, 2022 3:09 am I don't know what your code looks like, but this works for me:Code: Select all
local gme = require("LoveGme")() function love.load() gme:loadFile("RS3_Podorui.spc") gme:play() end function love.update(dt) gme:update(dt) end
Can you please upload your own code here so I can see.Yozzaxia wrote: ↑Sat Oct 01, 2022 3:09 am I don't know what your code looks like, but this works for me:Code: Select all
local gme = require("LoveGme")() function love.load() gme:loadFile("RS3_Podorui.spc") gme:play() end function love.update(dt) gme:update(dt) end