DialogNodeOutputModifiers
public struct DialogNodeOutputModifiers : Codable, Equatable
Options that modify how specified output is handled.
-
Whether values in the output will overwrite output values in an array specified by previously executed dialog nodes. If this option is set to
false, new values will be appended to previously specified values.Declaration
Swift
public var overwrite: Bool? -
Initialize a
DialogNodeOutputModifierswith member variables.Declaration
Swift
public init( overwrite: Bool? = nil )Parameters
overwriteWhether values in the output will overwrite output values in an array specified by previously executed dialog nodes. If this option is set to
false, new values will be appended to previously specified values.Return Value
An initialized
DialogNodeOutputModifiers.
View on GitHub
DialogNodeOutputModifiers Structure Reference