How to export var as scrollbar?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Tort
export var job = ['a', 'b', 'c']

enter image description here
How to export var as scrollbar?

:bust_in_silhouette: Reply From: Jowan-Spooner

Hey Tort,
When you export floats with a max like this:

export (float, 20) var my_float = 10

there will be a HSlider.

If you export a string you can create a Dropdown selection button by adding some strings:

export (String, "Fire", "Water", "Earth") var y = "Fire"

If that’s not what you meant look here.

Good Luck!

Thanks!!!

Tort | 2019-05-27 02:18