- 478
- 20
attempt to call field 'PushStyleVarFloat' (a nil value)
stack traceback:
когда вставил
stack traceback:
когда вставил
Lua:
function imgui.Hint(str_id, hint, delay)
local hovered = imgui.IsItemHovered()
local animTime = 0.2
local delay = delay or 0.00
local show = true
if not allHints then allHints = {} end
if not allHints[str_id] then
allHints[str_id] = {
status = false,
timer = 0
}
end
if hovered then
for k, v in pairs(allHints) do
if k ~= str_id and os.clock() - v.timer <= animTime then
show = false
end
end
end
if show and allHints[str_id].status ~= hovered then
allHints[str_id].status = hovered
allHints[str_id].timer = os.clock() + delay
end
if show then
local between = os.clock() - allHints[str_id].timer
if between <= animTime then
local s = function(f)
return f < 0.0 and 0.0 or (f > 1.0 and 1.0 or f)
end
local alpha = hovered and s(between / animTime) or s(1.00 - between / animTime)
imgui.PushStyleVarFloat(imgui.StyleVar.Alpha, alpha)
imgui.SetTooltip(hint)
imgui.PopStyleVar()
elseif hovered then
imgui.SetTooltip(hint)
end
end
end