GE Lua Documentation

Press F to search!

Definition


-- @/lua/common/extensions/ui/flowgraph/editor_api_luaintf.lua:240
  M.SelectLink = function(linkId, append)
    if linkId == nil then linkId = 0 end
    if append == nil then append = false end
    fge.SelectLink(linkId, append)
  end

Callers

@/lua/common/extensions/ui/flowgraph/editor_api_luaintf.lua
    if append == nil then append = false end
    fge.SelectLink(linkId, append)
  end
@/lua/ge/extensions/editor/flowgraph/main.lua
      ui_flowgraph_editor.ClearSelection()
      ui_flowgraph_editor.SelectLink(self.contextLinkId[0], true)
    end
@/lua/ge/extensions/flowgraph/manager.lua
      self.graph.links[isHidden].hidden = false
      ui_flowgraph_editor.SelectLink(isHidden, true)
    end