Class Line
Contains information about an individual line of dialogue, including
its speaker, text content, metadata, and optional jump target.
Assembly: .dll
Syntax
public class Line : IMetadata
Properties
|
Edit this page
View Source
JumpTarget
Declaration
public string JumpTarget { get; }
Property Value
|
Edit this page
View Source
LineContent
Declaration
public LineContent LineContent { get; }
Property Value
|
Edit this page
View Source
Silent
When true, the engine processes this line (invocations, metadata) without
displaying it in the dialogue view. Set by the [>>] speaker syntax.
Declaration
public bool Silent { get; }
Property Value
|
Edit this page
View Source
Speaker
Declaration
public string Speaker { get; }
Property Value
Methods
|
Edit this page
View Source
Check if entity contains any metadata.
Declaration
public bool HasMetadata(string key)
Parameters
| Type |
Name |
Description |
| string |
key |
|
Returns
|
Edit this page
View Source
Declaration
public bool TryGetMetadataValue(string key, out string value)
Parameters
Returns
Implements