GE Lua Documentation

Press F to search!

ImVecPtrDeref

Definition


-- @/lua/common/extensions/ui/imgui_custom_luaintf.lua:34
  --===

  function M.ImVecPtrDeref(x)
    return x
  end

Callers

@/lua/ge/extensions/flowgraph/graph.lua
  if self.viewPos and self.viewZoom then
    local deref = im.ImVecPtrDeref(self.viewPos)
    viewPos = { deref.x, deref.y }
@/lua/ge/extensions/editor/flowgraph/properties.lua
        im.NextColumn()
        local viewPos = im.ImVecPtrDeref(graph.viewPos)
        im.Text(string.format("%0.1f / 0.1f", viewPos.x, viewPos.y))
@/lua/ge/extensions/editor/flowgraph/main.lua
            local oldCp = im.GetCursorPos()
            local vp = im.ImVecPtrDeref(vpPtr)