mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-24 05:32:06 +00:00
24 lines
277 B
Lua
24 lines
277 B
Lua
ufbx = {}
|
|
|
|
function ufbx:include(includes)
|
|
if includes:handle(self:name()) then
|
|
includedirs {
|
|
path.join(ThirdPartyFolder(), "ufbx")
|
|
}
|
|
end
|
|
end
|
|
|
|
function ufbx:link()
|
|
end
|
|
|
|
function ufbx:use()
|
|
|
|
end
|
|
|
|
function ufbx:name()
|
|
return "ufbx"
|
|
end
|
|
|
|
function ufbx:project()
|
|
end
|