Function; Objective_Select - HWRM/KarosGraveyard GitHub Wiki

Objective_Select(<objective_ID>)

Description

Selects the given objective in the 'OBJECTIVES' pane (highlights it and shows its descripton on the right side).

Example

local o1 = Objective_Add("some-cool-objective", OT_Primary);
local o2 = Objective_Add("another one", OT_Primary);

-- select the second objective 'another one' in the UI:
Objective_Select(o2);

Arguments

Param Type Description
objective_ID number The integer ID of the object to select in the UI.

Related Pages