Set Text Gimmick

It is a gimmick that sets the content of the message in Text.

Set Text Gimmick is a gimmick that sets the read message to the Text component.

Property

Propertyfunction
TargetSpecifies the target of the message to be read. For details, see the common setting items for gimmicks. The Target of this gimmick can be Global, Item or Local Player. To configure LocalPlayer, you must be a child of the Player Local UI.
KeySpecifies the distinguished name of the message to read. For details, see the common setting items for gimmicks.
Parameter TypeSpecifies the type of message (value type) that can be read.
-SignalSignal Reads when the message was sent. The default Format sets the date.
-BoolReads two values like on / off. The default Format sets True or False.
-FloatReads a real number message.
-IntegerReads an integer message.
-Vector2Reads a 2D vector message.
-Vector3Read the message of the 3D vector.
FormatSpecifies how the value is a string. If left blank, the default format will be used.

Set [Composite Formatting] (https://docs.microsoft.com/en-us/dotnet/standard/base-types/composite-formatting) for Format. For example, if you specify value is {0} in Format and read a message with Value set to 5 in Integer, the text of the Text component is set to value is 5. Please see [here] (https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings) for the detailed format for receiving numbers. If you want to display the time instead of the Signal date, you can use a format such as {0: T}. Please see [here] (https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-date-and-time-format-strings) for the detailed format for reading the signal. ..