local imgui = require 'mimgui'
local renderWindow = imgui.new.bool(true)
local anim_value = imgui.ImVec2(0, 0)
local function is_vec2_zero(vec)
return vec.x == 0.0 and vec.y == 0.0
end
function bringVec2To(from, to, start_time, duration)
local timer = os.clock() - start_time
if timer...