GE Lua Documentation

Press F to search!

ImGuiListClipper

Definition


-- @/lua/common/extensions/ui/imgui_gen_luaintf.lua:1965
--===
--=== struct ImGuiListClipper ===
function M.ImGuiListClipper() return imgui.ImGuiListClipper() end

Callers

@/lua/ge/extensions/ui/console.lua

      local listClip = im.ImGuiListClipper()
      im.ImGuiListClipper_Begin(listClip,lines_count,lines_height)

  --     local listClip = im.ImGuiListClipper()
  --     im.ImGuiListClipper_Begin(listClip,lines_count,lines_height)
@/lua/ge/extensions/editor/vehicleEditor/staticEditor/vePartTextView.lua
        maxLineLength = 1
        clipper = im.ImGuiListClipper()
      end
@/lua/ge/extensions/editor/assetManagementTool.lua

    listClip = imgui.ImGuiListClipper()
    imgui.ImGuiListClipper_Begin(listClip, totalRowCount)
    imgui.TableHeadersRow()
    listClip = imgui.ImGuiListClipper()
    imgui.ImGuiListClipper_Begin(listClip, #invalidLinkFiles)

    listClip = imgui.ImGuiListClipper()
    imgui.ImGuiListClipper_Begin(listClip, #invalidFilenames)

    listClip = imgui.ImGuiListClipper()
    imgui.ImGuiListClipper_Begin(listClip, #delinkFilenames)

    listClip = imgui.ImGuiListClipper()
    imgui.ImGuiListClipper_Begin(listClip, #relinkFilenames)
@/lua/ge/extensions/editor/slotTrafficEditor.lua
          -- Clipper for virtual scrolling
          local clipper = im.ImGuiListClipper()
          local roadsArray = {}
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.ImGuiListClipper() return imgui.ImGuiListClipper() end
function M.ImGuiListClipperPtr() return imgui.ImGuiListClipper() end
function M.ImGuiListClipper_Begin(ImGuiListClipper_ctx, int_items_count, float_items_height)