How to export a PoolStringArray variable as MULTILINE

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By ichster

I know you can export a var as a multi-line textbox: export(String, MULTILINE) var textbox

Is it possible to do the same, but in array format? This is what I tried, and it did not work: export(PoolStringArray, MULTILINE) var textboxes

Sources:

:bust_in_silhouette: Reply From: ichster

I figured out a work-around, but you can’t use PoolStringArray to do it. Instead, make an Array of Strings, and then give them the MULTILINE hint: export(Array, String, MULTILINE) var textboxes