Blueprint local variables default value lifetime

Whenever a function is called, are the local variables within it started with the default values, or do they retain the value of the previous iteration?

Default values. There is no persistence between calls.

1 Like