Interface IMyHudObjectiveLine
Describes interface of notification (mods interface)
Namespace: VRage.Game.ModAPI
Assembly: VRage.Game.dll
Syntax
public interface IMyHudObjectiveLine
Properties
CurrentObjective
Gets current objective text
Declaration
string CurrentObjective { get; }
Property Value
Type | Description |
---|---|
System.String |
Objectives
Gets or sets objectives
Declaration
List<string> Objectives { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Title
Gets or sets title
Declaration
string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Visible
Gets if visible
Declaration
bool Visible { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
AdvanceObjective()
Moves to next objective
Declaration
void AdvanceObjective()
Hide()
Hides
Declaration
void Hide()
Show()
Shows objective
Declaration
void Show()