EX_MapConst

Namespace: UAssetAPI.Kismet.Bytecode.Expressions

A single Kismet bytecode instruction, corresponding to the EExprToken.EX_MapConst instruction.

public class EX_MapConst : UAssetAPI.Kismet.Bytecode.KismetExpression

Inheritance ObjectKismetExpressionEX_MapConst

Fields

KeyProperty

Pointer to this constant's key property (FProperty*).

public KismetPropertyPointer KeyProperty;

ValueProperty

Pointer to this constant's value property (FProperty*).

public KismetPropertyPointer ValueProperty;

Elements

Set constant entries.

public KismetExpression[] Elements;

Tag

An optional tag which can be set on any expression in memory. This is for the user only, and has no bearing in the API itself.

public object Tag;

RawValue

public object RawValue;

Properties

Token

The token of this expression.

public EExprToken Token { get; }

Property Value

EExprToken

Inst

The token of this instruction expressed as a string.

public string Inst { get; }

Property Value

String

Constructors

EX_MapConst()

public EX_MapConst()

Methods

Read(AssetBinaryReader)

Reads out the expression from a BinaryReader.

public void Read(AssetBinaryReader reader)

Parameters

reader AssetBinaryReader
The BinaryReader to read from.

Write(AssetBinaryWriter)

Writes the expression to a BinaryWriter.

public int Write(AssetBinaryWriter writer)

Parameters

writer AssetBinaryWriter
The BinaryWriter to write from.

Returns

Int32
The iCode offset of the data that was written.