I'm thinking a global variable that tells me the current language (because it can be changed). 1 = english and 2 = korean. I'll call this "LANGUAGE"
I can then do an if/then for every single love.graphics.print and every love.graphics.draw that contains english.
Code: Select all
If LANGUAGE == 1 then
love.graphics.setFont(FONT[mydefaultfont])
love.graphic.print("Start", 100, 100)
else
love.graphics.setFont(FONT[mykoreanfont])
love.graphics.print("시작", 100, 100) -- <-- this means "start"
end