We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec1798 commit 458d8afCopy full SHA for 458d8af
UAssetAPI/Kismet/Bytecode/KismetExpression.cs
@@ -13,11 +13,16 @@ public class KismetExpression
13
/// </summary>
14
public virtual EExprToken Token { get { return EExprToken.EX_Nothing; } }
15
16
+ /// <summary>
17
+ /// The token of this instruction expressed as a string.
18
+ /// </summary>
19
+ public string Inst { get { return Token.ToString().Substring(3, Token.ToString().Length - 3); } }
20
+
21
/// <summary>
22
/// 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.
23
24
public object Tag;
- public string Inst { get { return Token.ToString(); } }
25
26
public object RawValue;
27
28
public void SetObject(object value)
0 commit comments