GE Lua Documentation

Press F to search!

Definition


-- @/lua/common/extensions/ui/flowgraph/editor_api_luaintf.lua:253
  M.NavigateToSelection = function(zoomIn, duration)
    if zoomIn == nil then zoomIn = false end
    if duration == nil then duration = -1.0 end
    fge.NavigateToSelection(zoomIn, duration)
  end

Callers

@/lua/common/extensions/ui/flowgraph/editor_api_luaintf.lua
    if duration == nil then duration = -1.0 end
    fge.NavigateToSelection(zoomIn, duration)
  end
@/lua/ge/extensions/editor/flowgraph/overview.lua
      self:selectNode(self.contextMenuNode, false)
      fge.NavigateToSelection(true, 0.0001)
    end
            if im.IsMouseDoubleClicked(0) then
              fge.NavigateToSelection(false, 0.3)
            elseif im.IsMouseClicked(1) then
@/lua/ge/extensions/editor/flowgraph/search.lua
      ui_flowgraph_editor.SelectNode(result.pin.node.id, false)
      --ui_flowgraph_editor.NavigateToSelection(false, 0.1)
      result.pin.node.graph.focusSelection = true
@/lua/ge/extensions/editor/flowgraph/main.lua
    if graph.focusSelection then
      ui_flowgraph_editor.NavigateToSelection(false, 0.30)
    end