Skip to content

Commit

Permalink
Enable love.font module
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuAuahDark committed Jul 31, 2021
1 parent f09720c commit f4ff3e0
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions generator/html-generator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,11 @@ local function makeLinks(description, typeName)
end

for moduleIndex, module_ in ipairs(love.modules) do
if module_.name.name == 'video' or module_.name == 'font' then
table.remove(love.modules, moduleIndex)
else
loopFunctions(module_.functions, module_, 'module', 'love.'..module_.name..'.')
loopTypes(module_.types, module_)
print(module_.name)
loopFunctions(module_.functions, module_, 'module', 'love.'..module_.name..'.')
loopTypes(module_.types, module_)

for _, enum in ipairs(module_.enums or {}) do
end
for _, enum in ipairs(module_.enums or {}) do
end
end

Expand Down

0 comments on commit f4ff3e0

Please sign in to comment.