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:
- GDScript exports
- PoolStringArray
- ("MULTILINE" is interpreted as a string literal by the gdscript parser)