My primary question is, are all Love scripts written without a main loop? And is everything based off of the callbackfunctions?
My second question is, how is the Love script in the love file read by the interpreter?
For example:
Code: Select all
-- This is an empty program
function load()
end
function update(dt)
end
function draw()
end
And, finally where can I find more information about Config Files?