enum
AssignmentKind
public sealed enum AssignmentKind : Enum Operations accessor nodes can perform.
Enum Values
| Name | Value | Description |
|---|---|---|
Set | | Replace the old value with the new value. |
Add | | Replace the old value with old + new. |
Subtract | | Replace the old value with old - new. |
Multiply | | Replace the old value with old * new. |
Divide | | Replace the old value with old / new. |
Increment | | Replace the old value with old + 1. |
Decrement | | Replace the old value with old - 1. |
Assembly:
Facepunch.ActionGraphs Namespace: Facepunch.ActionGraphs Full Name: Facepunch.ActionGraphs.AssignmentKind