This controller is only useful for debugging. Prints a specified message to the player's clipboard. The message text is added on a new line, instead of overwriting whatever text is already on the clipboard.
Display of the player clipboards is enabled in debug mode (press Ctrl+D).

Required parameters:

Optional parameters:

Example:

type = DisplayToClipboard
text = "The value of var(17) is %d, which is %f%% of 23.\n\t--Kiwi."
params = var(17) := 1, var(17) / .230
; displays the following to the player's clipboard:
; The value of var(17) is 1, which is 4.347826% of 23.
; --Kiwi.