You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I was following along with you amazing videos on YouTube but got to a part that I cannot replicate. In video 3, you create a new folder comicData and inside that so1.lua and THEN delete MyComicdata.lua (trying to remember the name without checking sorry) and then in main.lua you change where it looks for it to the new comic Data amd s01.lua but whenever I delete the MyComicData.lua file and run it, it says it is missing MyComicData.lua and have no idea what is still pointing to that.
The text was updated successfully, but these errors were encountered:
Hi, sorry, I didn't see this before. It looks like I stopped getting notifications for new issues for some reason.
Did you get this figured out?
It sounds to me like you just to need to change the import line in main.lua from
import"myComicData.lua"comicData=myComicData
to whatever matches your new file, probably something like:
import"comicData/s01.lua"comicData= { s01 }
Note that comicData should be a Lua table that is a list of the sequences in your comic. The s01 comes from the name of the sequence that I have set in s01.lua. Yours might be different.
Also, for these kinds of questions you can ping me in the Playdate Squad Discord and I can chat with you directly there. There's even a special Panels area set up there.
Hi I was following along with you amazing videos on YouTube but got to a part that I cannot replicate. In video 3, you create a new folder comicData and inside that so1.lua and THEN delete MyComicdata.lua (trying to remember the name without checking sorry) and then in main.lua you change where it looks for it to the new comic Data amd s01.lua but whenever I delete the MyComicData.lua file and run it, it says it is missing MyComicData.lua and have no idea what is still pointing to that.
The text was updated successfully, but these errors were encountered: