Barotrauma Client Doc
Barotrauma.WaitAction Class Reference
Inheritance diagram for Barotrauma.WaitAction:
Barotrauma.EventAction

Public Member Functions

 WaitAction (ScriptedEvent parentEvent, ContentXElement element)
 
override bool IsFinished (ref string goTo)
 Has the action finished. More...
 
override void Reset ()
 
override void Update (float deltaTime)
 
override string ToDebugString ()
 Rich test to display in debugdraw More...
 
- Public Member Functions inherited from Barotrauma.EventAction
 EventAction (ScriptedEvent parentEvent, ContentXElement element)
 
virtual bool SetGoToTarget (string goTo)
 
virtual bool CanBeFinished ()
 
virtual IEnumerable< EventActionGetSubActions ()
 

Properties

float Time [get, set]
 

Additional Inherited Members

- Static Public Member Functions inherited from Barotrauma.EventAction
static EventAction Instantiate (ScriptedEvent scriptedEvent, ContentXElement element)
 
- Public Attributes inherited from Barotrauma.EventAction
readonly ScriptedEvent ParentEvent
 
- Protected Member Functions inherited from Barotrauma.EventAction
void ApplyTagsToHulls (Entity entity, Identifier hullTag, Identifier linkedHullTag)
 

Detailed Description

Definition at line 3 of file WaitAction.cs.

Constructor & Destructor Documentation

◆ WaitAction()

Barotrauma.WaitAction.WaitAction ( ScriptedEvent  parentEvent,
ContentXElement  element 
)

Definition at line 10 of file WaitAction.cs.

Member Function Documentation

◆ IsFinished()

override bool Barotrauma.WaitAction.IsFinished ( ref string  goToLabel)
virtual

Has the action finished.

Parameters
goToLabelIf null or empty, the event moves to the next action. Otherwise it moves to the specified label.
Returns

Implements Barotrauma.EventAction.

Definition at line 15 of file WaitAction.cs.

◆ Reset()

override void Barotrauma.WaitAction.Reset ( )
virtual

Implements Barotrauma.EventAction.

Definition at line 19 of file WaitAction.cs.

◆ ToDebugString()

override string Barotrauma.WaitAction.ToDebugString ( )
virtual

Rich test to display in debugdraw

public override string ToDebugString()
{
return $"{ToolBox.GetDebugSymbol(isFinished)} SomeAction -> "(someInfo: {info.ColorizeObject()})";
}
override string ToDebugString()
Rich test to display in debugdraw
Definition: WaitAction.cs:30
Returns

Reimplemented from Barotrauma.EventAction.

Definition at line 30 of file WaitAction.cs.

◆ Update()

override void Barotrauma.WaitAction.Update ( float  deltaTime)
virtual

Reimplemented from Barotrauma.EventAction.

Definition at line 24 of file WaitAction.cs.

Property Documentation

◆ Time

float Barotrauma.WaitAction.Time
getset

Definition at line 6 of file WaitAction.cs.