Files
ox_lib/imports/requestStreamedTextureDict/client.lua

22 lines
895 B
Lua
Raw Normal View History

---Load a texture dictionary. When called from a thread, it will yield until it has loaded.
---@param textureDict string
---@param timeout number? Number of ticks to wait for the dictionary to load. Default is 500.
---@return string? textureDict
function lib.requestStreamedTextureDict(textureDict, timeout)
if HasStreamedTextureDictLoaded(textureDict) then return textureDict end
if type(textureDict) ~= 'string' then
error(("expected textureDict to have type 'string' (received %s)"):format(type(textureDict)))
end
RequestStreamedTextureDict(textureDict, false)
2023-07-31 16:06:44 +10:00
if not coroutine.isyieldable() then return textureDict end
2023-07-31 16:06:44 +10:00
return lib.waitFor(function()
if HasStreamedTextureDictLoaded(textureDict) then return textureDict end
end, ("failed to load textureDict '%s'"):format(textureDict), timeout or 500)
end
return lib.requestStreamedTextureDict