Data Record Evaluate Expression (Float)
Evaluate a math expression using Data Record fields and store the result as a float.
Parameters
| Parameter | Description |
|---|---|
| Record | Data Record that provides field values for the expression. |
| Expression | Math expression to evaluate. Use {FieldName} to reference fields. |
| Result | Float variable that receives the evaluated result. |
Details
Field names in expressions are resolved from the record's Data Definition.
Missing or empty values are treated as 0, and the action can also resolve built-in expression identifiers.
Examples
- Evaluate
{BaseDamage} * {CritMultiplier}for combat output. - Compute move speed using
{Speed} + {Buff}and store in a float variable.